diff options
132 files changed, 57853 insertions, 34183 deletions
diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index cf23ddf3c3a..2e6e9c328f6 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -8,7 +8,7 @@ jobs: steps: - uses: actions/checkout@master - name: Install dependencies - run: brew install sdl2 + run: brew install python3 sdl2 - name: Build env: USE_LIBSDL: 1 diff --git a/3rdparty/utf8proc/CMakeLists.txt b/3rdparty/utf8proc/CMakeLists.txt index be676ba2680..ea6b80e1719 100644 --- a/3rdparty/utf8proc/CMakeLists.txt +++ b/3rdparty/utf8proc/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 2.8) +cmake_minimum_required (VERSION 2.8.12) include (utils.cmake) @@ -10,24 +10,92 @@ project (utf8proc C) # API version number (defined in utf8proc.h). # Be sure to also update these in Makefile and MANIFEST! set(SO_MAJOR 2) -set(SO_MINOR 1) -set(SO_PATCH 0) +set(SO_MINOR 4) +set(SO_PATCH 1) -add_definitions ( - -DUTF8PROC_EXPORTS -) - -if (NOT MSVC) - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2 -std=c99 -pedantic -Wall") -endif () +option(UTF8PROC_INSTALL "Enable installation of utf8proc" On) +option(UTF8PROC_ENABLE_TESTING "Enable testing of utf8proc" Off) add_library (utf8proc utf8proc.c utf8proc.h ) +# expose header path, for when this is part of a larger cmake project +target_include_directories(utf8proc PUBLIC .) + +if (BUILD_SHARED_LIBS) + # Building shared library +else() + # Building static library + target_compile_definitions(utf8proc PUBLIC "UTF8PROC_STATIC") + if (MSVC) + set_target_properties(utf8proc PROPERTIES OUTPUT_NAME "utf8proc_static") + endif() +endif() + +target_compile_definitions(utf8proc PRIVATE "UTF8PROC_EXPORTS") + +if (NOT MSVC) + set_target_properties( + utf8proc PROPERTIES + COMPILE_FLAGS "-O2 -std=c99 -pedantic -Wall" + ) +endif () + set_target_properties (utf8proc PROPERTIES POSITION_INDEPENDENT_CODE ON VERSION "${SO_MAJOR}.${SO_MINOR}.${SO_PATCH}" SOVERSION ${SO_MAJOR} ) + +if (UTF8PROC_INSTALL) + install(TARGETS utf8proc + RUNTIME DESTINATION bin + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib) + + install( + FILES + "${PROJECT_SOURCE_DIR}/utf8proc.h" + DESTINATION include) +endif() + +if(UTF8PROC_ENABLE_TESTING) + enable_testing() + file(MAKE_DIRECTORY data) + set(UNICODE_VERSION 13.0.0) + file(DOWNLOAD https://www.unicode.org/Public/${UNICODE_VERSION}/ucd/NormalizationTest.txt data/NormalizationTest.txt SHOW_PROGRESS) + file(DOWNLOAD https://www.unicode.org/Public/${UNICODE_VERSION}/ucd/auxiliary/GraphemeBreakTest.txt data/GraphemeBreakTest.txt SHOW_PROGRESS) + add_executable(case test/tests.h test/tests.c utf8proc.h test/case.c) + target_link_libraries(case utf8proc) + add_executable(custom test/tests.h test/tests.c utf8proc.h test/custom.c) + target_link_libraries(custom utf8proc) + add_executable(iterate test/tests.h test/tests.c utf8proc.h test/iterate.c) + target_link_libraries(iterate utf8proc) + add_executable(misc test/tests.h test/tests.c utf8proc.h test/misc.c) + target_link_libraries(misc utf8proc) + add_executable(printproperty test/tests.h test/tests.c utf8proc.h test/printproperty.c) + target_link_libraries(printproperty utf8proc) + add_executable(valid test/tests.h test/tests.c utf8proc.h test/valid.c) + target_link_libraries(valid utf8proc) + add_test(utf8proc.testcase case) + add_test(utf8proc.testcustom custom) + add_test(utf8proc.testiterate iterate) + add_test(utf8proc.testmisc misc) + add_test(utf8proc.testprintproperty printproperty) + add_test(utf8proc.testvalid valid) + + if (NOT WIN32) + # no wcwidth function on Windows + add_executable(charwidth test/tests.h test/tests.c utf8proc.h test/charwidth.c) + target_link_libraries(charwidth utf8proc) + add_test(utf8proc.testcharwidth charwidth) + endif() + add_executable(graphemetest test/tests.h test/tests.c utf8proc.h test/graphemetest.c) + target_link_libraries(graphemetest utf8proc) + add_executable(normtest test/tests.h test/tests.c utf8proc.h test/normtest.c) + target_link_libraries(normtest utf8proc) + add_test(utf8proc.testgraphemetest graphemetest data/GraphemeBreakTest.txt) + add_test(utf8proc.testnormtest normtest data/NormalizationTest.txt) +endif() diff --git a/3rdparty/utf8proc/Doxyfile b/3rdparty/utf8proc/Doxyfile index 9b3b9cd4095..eaf381b37ad 100644 --- a/3rdparty/utf8proc/Doxyfile +++ b/3rdparty/utf8proc/Doxyfile @@ -1,4 +1,4 @@ -# Doxyfile 1.8.9.1 +# Doxyfile 1.8.18 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. @@ -17,11 +17,11 @@ # Project related configuration options #--------------------------------------------------------------------------- -# This tag specifies the encoding used for all characters in the config file -# that follow. The default is UTF-8 which is also the encoding used for all text -# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv -# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv -# for the list of possible encodings. +# This tag specifies the encoding used for all characters in the configuration +# file that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# https://www.gnu.org/software/libiconv/ for the list of possible encodings. # The default value is: UTF-8. DOXYFILE_ENCODING = UTF-8 @@ -93,6 +93,14 @@ ALLOW_UNICODE_NAMES = NO OUTPUT_LANGUAGE = English +# The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all generated output in the proper direction. +# Possible values are: None, LTR, RTL and Context. +# The default value is: None. + +OUTPUT_TEXT_DIRECTION = None + # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member # descriptions after the members that are listed in the file and class # documentation (similar to Javadoc). Set to NO to disable this. @@ -179,6 +187,16 @@ SHORT_NAMES = NO JAVADOC_AUTOBRIEF = NO +# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line +# such as +# /*************** +# as being the beginning of a Javadoc-style comment "banner". If set to NO, the +# Javadoc-style will behave just like regular comments and it will not be +# interpreted by doxygen. +# The default value is: NO. + +JAVADOC_BANNER = NO + # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first # line (until the first dot) of a Qt-style comment as the brief description. If # set to NO, the Qt-style will behave just like regular Qt-style comments (thus @@ -226,16 +244,15 @@ TAB_SIZE = 4 # will allow you to put the command \sideeffect (or @sideeffect) in the # documentation, which will result in a user-defined paragraph with heading # "Side Effects:". You can put \n's in the value part of an alias to insert -# newlines. +# newlines (in the resulting output). You can put ^^ in the value part of an +# alias to insert a newline as if a physical newline was in the original file. +# When you need a literal { or } or , in the value part of an alias you have to +# escape them by means of a backslash (\), this can lead to conflicts with the +# commands \{ and \} for these it is advised to use the version @{ and @} or use +# a double escape (\\{ and \\}) ALIASES = -# This tag can be used to specify a number of word-keyword mappings (TCL only). -# A mapping has the form "name=value". For example adding "class=itcl::class" -# will allow you to use the command class in the itcl::class meaning. - -TCL_SUBST = - # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. For # instance, some of the names that are used will be different. The list of all @@ -264,17 +281,26 @@ OPTIMIZE_FOR_FORTRAN = NO OPTIMIZE_OUTPUT_VHDL = NO +# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice +# sources only. Doxygen will then generate output that is more tailored for that +# language. For instance, namespaces will be presented as modules, types will be +# separated into more groups, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_SLICE = NO + # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, and -# language is one of the parsers supported by doxygen: IDL, Java, Javascript, -# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: -# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: -# Fortran. In the later case the parser tries to guess whether the code is fixed -# or free formatted code, this is the default for Fortran type files), VHDL. For -# instance to make doxygen treat .inc files as Fortran files (default is PHP), -# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# language is one of the parsers supported by doxygen: IDL, Java, JavaScript, +# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, VHDL, +# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: +# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser +# tries to guess whether the code is fixed or free formatted code, this is the +# default for Fortran type files). For instance to make doxygen treat .inc files +# as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. # # Note: For files without extension you can use no_extension as a placeholder. # @@ -285,7 +311,7 @@ EXTENSION_MAPPING = # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments # according to the Markdown format, which allows for more readable -# documentation. See http://daringfireball.net/projects/markdown/ for details. +# documentation. See https://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you can # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in # case of backward compatibilities issues. @@ -293,6 +319,15 @@ EXTENSION_MAPPING = MARKDOWN_SUPPORT = YES +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 5. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 5 + # When enabled doxygen tries to link words that correspond to documented # classes, or namespaces to their corresponding documentation. Such a link can # be prevented in individual cases by putting a % sign in front of the word or @@ -318,7 +353,7 @@ BUILTIN_STL_SUPPORT = NO CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip (see: -# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen # will parse them like normal C++ but will assume all classes use public instead # of private inheritance when no explicit protection keyword is present. # The default value is: NO. @@ -343,6 +378,13 @@ IDL_PROPERTY_SUPPORT = YES DISTRIBUTE_GROUP_DOC = NO +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + # Set the SUBGROUPING tag to YES to allow class member groups of the same type # (for instance a group of public functions) to be put as a subgroup of that # type (e.g. under the Public Functions section). Set it to NO to prevent @@ -417,6 +459,12 @@ EXTRACT_ALL = NO EXTRACT_PRIVATE = NO +# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual +# methods of a class will be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIV_VIRTUAL = NO + # If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal # scope will be included in the documentation. # The default value is: NO. @@ -471,8 +519,8 @@ HIDE_UNDOC_MEMBERS = NO HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend -# (class|struct|union) declarations. If set to NO, these declarations will be -# included in the documentation. +# declarations. If set to NO, these declarations will be included in the +# documentation. # The default value is: NO. HIDE_FRIEND_COMPOUNDS = NO @@ -495,7 +543,7 @@ INTERNAL_DOCS = NO # names in lower-case letters. If set to YES, upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows -# and Mac users are advised to set this option to NO. +# (including Cygwin) ands Mac users are advised to set this option to NO. # The default value is: system dependent. CASE_SENSE_NAMES = NO @@ -682,7 +730,7 @@ LAYOUT_FILE = # The CITE_BIB_FILES tag can be used to specify one or more bib files containing # the reference definitions. This must be a list of .bib files. The .bib # extension is automatically appended if omitted. This requires the bibtex tool -# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. # For LaTeX the style of the bibliography can be controlled using # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the # search path. See also \cite for info how to create references. @@ -727,11 +775,18 @@ WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that # are documented, but have no documentation for their parameters or return # value. If set to NO, doxygen will only warn about wrong or incomplete -# parameter documentation, but not about the absence of documentation. +# parameter documentation, but not about the absence of documentation. If +# EXTRACT_ALL is set to YES then this flag will automatically be disabled. # The default value is: NO. WARN_NO_PARAMDOC = NO +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. +# The default value is: NO. + +WARN_AS_ERROR = NO + # The WARN_FORMAT tag determines the format of the warning messages that doxygen # can produce. The string should contain the $file, $line, and $text tags, which # will be replaced by the file and line number from which the warning originated @@ -755,7 +810,7 @@ WARN_LOGFILE = # The INPUT tag is used to specify the files and/or directories that contain # documented source files. You may enter file names like myfile.cpp or # directories like /usr/src/myproject. Separate the files or directories with -# spaces. +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. INPUT = @@ -763,7 +818,7 @@ INPUT = # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses # libiconv (or the iconv built into libc) for the transcoding. See the libiconv -# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# documentation (see: https://www.gnu.org/software/libiconv/) for the list of # possible encodings. # The default value is: UTF-8. @@ -771,12 +826,19 @@ INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and -# *.h) to filter out the source-files in the directories. If left blank the -# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, -# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, -# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, -# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, -# *.qsf, *.as and *.js. +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, +# *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment), +# *.doc (to be provided as doxygen C comment), *.txt (to be provided as doxygen +# C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, +# *.vhdl, *.ucf, *.qsf and *.ice. FILE_PATTERNS = @@ -793,7 +855,8 @@ RECURSIVE = NO # Note that relative paths are relative to the directory from which doxygen is # run. -EXCLUDE = NEWS.md lump.md +EXCLUDE = NEWS.md \ + lump.md # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded @@ -820,7 +883,8 @@ EXCLUDE_PATTERNS = # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories use the pattern */test/* -EXCLUDE_SYMBOLS = DLLEXPORT SSIZE_MAX +EXCLUDE_SYMBOLS = DLLEXPORT \ + SSIZE_MAX # The EXAMPLE_PATH tag can be used to specify one or more files or directories # that contain example code fragments that are included (see the \include @@ -862,6 +926,10 @@ IMAGE_PATH = # Note that the filter must not add or remove lines; it is applied before the # code is scanned, but not when the output code is generated. If lines are added # or removed, the anchors will not be placed correctly. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. INPUT_FILTER = @@ -871,6 +939,10 @@ INPUT_FILTER = # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how # filters are used. If the FILTER_PATTERNS tag is empty or if none of the # patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. FILTER_PATTERNS = @@ -923,7 +995,7 @@ INLINE_SOURCES = NO STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES then for each documented -# function all documented functions referencing it will be listed. +# entity all documented functions referencing it will be listed. # The default value is: NO. REFERENCED_BY_RELATION = NO @@ -955,12 +1027,12 @@ SOURCE_TOOLTIPS = YES # If the USE_HTAGS tag is set to YES then the references to source code will # point to the HTML generated by the htags(1) tool instead of doxygen built-in # source browser. The htags tool is part of GNU's global source tagging system -# (see http://www.gnu.org/software/global/global.html). You will need version +# (see https://www.gnu.org/software/global/global.html). You will need version # 4.8.6 or higher. # # To use it do the following: # - Install the latest version of global -# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file # - Make sure the INPUT points to the root of the source tree # - Run doxygen as normal # @@ -1100,7 +1172,7 @@ HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen # will adjust the colors in the style sheet and background images according to # this color. Hue is specified as an angle on a colorwheel, see -# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# https://en.wikipedia.org/wiki/Hue for more information. For instance the value # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 # purple, and 360 is red again. # Minimum value: 0, maximum value: 359, default value: 220. @@ -1129,12 +1201,24 @@ HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting this -# to NO can help when comparing the output of multiple runs. -# The default value is: YES. +# to YES can help to show when doxygen was last run and thus if the +# documentation is up to date. +# The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_TIMESTAMP = YES +# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML +# documentation will contain a main index with vertical navigation menus that +# are dynamically created via JavaScript. If disabled, the navigation index will +# consists of multiple levels of tabs that are statically embedded in every HTML +# page. Disable this option to support browsers that do not have JavaScript, +# like the Qt help browser. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_MENUS = YES + # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. @@ -1158,13 +1242,13 @@ HTML_INDEX_NUM_ENTRIES = 100 # If the GENERATE_DOCSET tag is set to YES, additional index files will be # generated that can be used as input for Apple's Xcode 3 integrated development -# environment (see: http://developer.apple.com/tools/xcode/), introduced with -# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# environment (see: https://developer.apple.com/xcode/), introduced with OSX +# 10.5 (Leopard). To create a documentation set, doxygen will generate a # Makefile in the HTML output directory. Running make will produce the docset in # that directory and running make install will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at -# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html -# for more information. +# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy +# genXcode/_index.html for more information. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. @@ -1203,7 +1287,7 @@ DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three # additional HTML index files: index.hhp, index.hhc, and index.hhk. The # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop -# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# (see: https://www.microsoft.com/en-us/download/details.aspx?id=21138) on # Windows. # # The HTML Help Workshop contains a compiler that can convert all HTML output @@ -1279,7 +1363,7 @@ QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help # Project output. For more information please see Qt Help Project / Namespace -# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_QHP is set to YES. @@ -1287,7 +1371,7 @@ QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt # Help Project output. For more information please see Qt Help Project / Virtual -# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# Folders (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual- # folders). # The default value is: doc. # This tag requires that the tag GENERATE_QHP is set to YES. @@ -1296,7 +1380,7 @@ QHP_VIRTUAL_FOLDER = doc # If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom # filter to add. For more information please see Qt Help Project / Custom -# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom- # filters). # This tag requires that the tag GENERATE_QHP is set to YES. @@ -1304,7 +1388,7 @@ QHP_CUST_FILTER_NAME = # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see Qt Help Project / Custom -# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom- # filters). # This tag requires that the tag GENERATE_QHP is set to YES. @@ -1312,7 +1396,7 @@ QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's filter section matches. Qt Help Project / Filter Attributes (see: -# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_SECT_FILTER_ATTRS = @@ -1396,13 +1480,590 @@ TREEVIEW_WIDTH = 250 EXT_LINKS_IN_WINDOW = NO +# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg +# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see +# https://inkscape.org) to generate formulas as SVG images instead of PNGs for +# the HTML output. These images will generally look nicer at scaled resolutions. +# Possible values are: png The default and svg Looks nicer but requires the +# pdf2svg tool. +# The default value is: png. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FORMULA_FORMAT = png + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANSPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands +# to create new LaTeX commands to be used in formulas as building blocks. See +# the section "Including formulas" for details. + +FORMULA_MACROFILE = + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# https://www.mathjax.org) which uses client side JavaScript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from https://www.mathjax.org before deployment. +# The default value is: https://cdn.jsdelivr.net/npm/mathjax@2. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = https://cdn.jsdelivr.net/npm/mathjax@2 + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use <access key> + S +# (what the <access key> is depends on the OS and browser, but it is typically +# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down +# key> to jump into the search results window, the results can be navigated +# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel +# the search. The filter options can be selected when the cursor is inside the +# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> +# to select a filter and <Enter> or <escape> to activate or cancel the filter +# option. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +SEARCHENGINE = YES + +# When the SERVER_BASED_SEARCH tag is enabled the search engine will be +# implemented using a web server instead of a web client using JavaScript. There +# are two flavors of web server based searching depending on the EXTERNAL_SEARCH +# setting. When disabled, doxygen will generate a PHP script for searching and +# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing +# and searching needs to be provided by external tools. See the section +# "External Indexing and Searching" for details. +# The default value is: NO. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SERVER_BASED_SEARCH = NO + +# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP +# script for searching. Instead the search results are written to an XML file +# which needs to be processed by an external indexer. Doxygen will invoke an +# external search engine pointed to by the SEARCHENGINE_URL option to obtain the +# search results. +# +# Doxygen ships with an example indexer (doxyindexer) and search engine +# (doxysearch.cgi) which are based on the open source search engine library +# Xapian (see: https://xapian.org/). +# +# See the section "External Indexing and Searching" for details. +# The default value is: NO. +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTERNAL_SEARCH = NO + +# The SEARCHENGINE_URL should point to a search engine hosted by a web server +# which will return the search results when EXTERNAL_SEARCH is enabled. +# +# Doxygen ships with an example indexer (doxyindexer) and search engine +# (doxysearch.cgi) which are based on the open source search engine library +# Xapian (see: https://xapian.org/). See the section "External Indexing and +# Searching" for details. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SEARCHENGINE_URL = + +# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed +# search data is written to a file for indexing by an external tool. With the +# SEARCHDATA_FILE tag the name of this file can be specified. +# The default file is: searchdata.xml. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SEARCHDATA_FILE = searchdata.xml + +# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the +# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is +# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple +# projects and redirect the results back to the right project. +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTERNAL_SEARCH_ID = + +# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen +# projects other than the one defined by this configuration file, but that are +# all added to the same external search index. Each project needs to have a +# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of +# to a relative location where the documentation can be found. The format is: +# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTRA_SEARCH_MAPPINGS = + +#--------------------------------------------------------------------------- +# Configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output. +# The default value is: YES. + +GENERATE_LATEX = YES + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: latex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. +# +# Note that when not enabling USE_PDFLATEX the default is latex when enabling +# USE_PDFLATEX the default is pdflatex and when in the later case latex is +# chosen this is overwritten by pdflatex. For specific output languages the +# default can have been set differently, this depends on the implementation of +# the output language. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_CMD_NAME = + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate +# index for LaTeX. +# Note: This tag is used in the Makefile / make.bat. +# See also: LATEX_MAKEINDEX_CMD for the part in the generated output file +# (.tex). +# The default file is: makeindex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +MAKEINDEX_CMD_NAME = makeindex + +# The LATEX_MAKEINDEX_CMD tag can be used to specify the command name to +# generate index for LaTeX. In case there is no backslash (\) as first character +# it will be automatically added in the LaTeX code. +# Note: This tag is used in the generated output file (.tex). +# See also: MAKEINDEX_CMD_NAME for the part in the Makefile / make.bat. +# The default value is: makeindex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_MAKEINDEX_CMD = makeindex + +# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX +# documents. This may be useful for small projects and may help to save some +# trees in general. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used by the +# printer. +# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x +# 14 inches) and executive (7.25 x 10.5 inches). +# The default value is: a4. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +PAPER_TYPE = a4 + +# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names +# that should be included in the LaTeX output. The package can be specified just +# by its name or with the correct syntax as to be used with the LaTeX +# \usepackage command. To get the times font for instance you can specify : +# EXTRA_PACKAGES=times or EXTRA_PACKAGES={times} +# To use the option intlimits with the amsmath package you can specify: +# EXTRA_PACKAGES=[intlimits]{amsmath} +# If left blank no extra packages will be included. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the +# generated LaTeX document. The header should contain everything until the first +# chapter. If it is left blank doxygen will generate a standard header. See +# section "Doxygen usage" for information on how to let doxygen write the +# default header to a separate file. +# +# Note: Only use a user-defined header if you know what you are doing! The +# following commands have a special meaning inside the header: $title, +# $datetime, $date, $doxygenversion, $projectname, $projectnumber, +# $projectbrief, $projectlogo. Doxygen will replace $title with the empty +# string, for the replacement values of the other commands the user is referred +# to HTML_HEADER. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_HEADER = + +# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the +# generated LaTeX document. The footer should contain everything after the last +# chapter. If it is left blank doxygen will generate a standard footer. See +# LATEX_HEADER for more information on how to generate a default footer and what +# special commands can be used inside the footer. +# +# Note: Only use a user-defined footer if you know what you are doing! +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_FOOTER = + +# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# LaTeX style sheets that are included after the standard style sheets created +# by doxygen. Using this option one can overrule certain style aspects. Doxygen +# will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EXTRA_STYLESHEET = + +# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the LATEX_OUTPUT output +# directory. Note that the files will be copied as-is; there are no commands or +# markers available. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EXTRA_FILES = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is +# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will +# contain links (just like the HTML output) instead of page references. This +# makes the output suitable for online browsing using a PDF viewer. +# The default value is: YES. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate +# the PDF file directly from the LaTeX files. Set this option to YES, to get a +# higher quality PDF documentation. +# The default value is: YES. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode +# command to the generated LaTeX files. This will instruct LaTeX to keep running +# if errors occur, instead of asking the user for help. This option is also used +# when generating formulas in HTML. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_BATCHMODE = NO + +# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the +# index chapters (such as File Index, Compound Index, etc.) in the output. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_HIDE_INDICES = NO + +# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source +# code with syntax highlighting in the LaTeX output. +# +# Note that which sources are shown also depends on other settings such as +# SOURCE_BROWSER. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_SOURCE_CODE = NO + +# The LATEX_BIB_STYLE tag can be used to specify the style to use for the +# bibliography, e.g. plainnat, or ieeetr. See +# https://en.wikipedia.org/wiki/BibTeX and \cite for more info. +# The default value is: plain. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_BIB_STYLE = plain + +# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_TIMESTAMP = NO + +# The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute) +# path from which the emoji images will be read. If a relative path is entered, +# it will be relative to the LATEX_OUTPUT directory. If left blank the +# LATEX_OUTPUT directory will be used. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EMOJI_DIRECTORY = + +#--------------------------------------------------------------------------- +# Configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The +# RTF output is optimized for Word 97 and may not look too pretty with other RTF +# readers/editors. +# The default value is: NO. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: rtf. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF +# documents. This may be useful for small projects and may help to save some +# trees in general. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will +# contain hyperlink fields. The RTF file will contain links (just like the HTML +# output) instead of page references. This makes the output suitable for online +# browsing using Word or some other Word compatible readers that support those +# fields. +# +# Note: WordPad (write) and others do not support links. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# configuration file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. +# +# See also section "Doxygen usage" for information on how to generate the +# default style sheet that doxygen normally uses. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an RTF document. Syntax is +# similar to doxygen's configuration file. A template extensions file can be +# generated using doxygen -e rtf extensionFile. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_EXTENSIONS_FILE = + +# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code +# with syntax highlighting in the RTF output. +# +# Note that which sources are shown also depends on other settings such as +# SOURCE_BROWSER. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_SOURCE_CODE = NO + #--------------------------------------------------------------------------- # Configuration options related to the man page output #--------------------------------------------------------------------------- +# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for +# classes and files. +# The default value is: NO. + GENERATE_MAN = YES + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. A directory man3 will be created inside the directory specified by +# MAN_OUTPUT. +# The default directory is: man. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to the generated +# man pages. In case the manual section does not start with a number, the number +# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is +# optional. +# The default value is: .3. +# This tag requires that the tag GENERATE_MAN is set to YES. + MAN_EXTENSION = .3 +# The MAN_SUBDIR tag determines the name of the directory created within +# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by +# MAN_EXTENSION with the initial . removed. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_SUBDIR = + +# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it +# will generate one additional man file for each entity documented in the real +# man page(s). These additional files only source the real man page, but without +# them the man command would be unable to find the correct page. +# The default value is: NO. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that +# captures the structure of the code including all documentation. +# The default value is: NO. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: xml. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_OUTPUT = xml + +# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program +# listings (including syntax highlighting and cross-referencing information) to +# the XML output. Note that enabling this will significantly increase the size +# of the XML output. +# The default value is: YES. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_PROGRAMLISTING = YES + +# If the XML_NS_MEMB_FILE_SCOPE tag is set to YES, doxygen will include +# namespace members in file scope as well, matching the HTML output. +# The default value is: NO. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_NS_MEMB_FILE_SCOPE = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the DOCBOOK output +#--------------------------------------------------------------------------- + +# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files +# that can be used to generate PDF. +# The default value is: NO. + +GENERATE_DOCBOOK = NO + +# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in +# front of it. +# The default directory is: docbook. +# This tag requires that the tag GENERATE_DOCBOOK is set to YES. + +DOCBOOK_OUTPUT = docbook + +# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the +# program listings (including syntax highlighting and cross-referencing +# information) to the DOCBOOK output. Note that enabling this will significantly +# increase the size of the DOCBOOK output. +# The default value is: NO. +# This tag requires that the tag GENERATE_DOCBOOK is set to YES. + +DOCBOOK_PROGRAMLISTING = NO + +#--------------------------------------------------------------------------- +# Configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an +# AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures +# the structure of the code including all documentation. Note that this feature +# is still experimental and incomplete at the moment. +# The default value is: NO. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module +# file that captures the structure of the code including all documentation. +# +# Note that this feature is still experimental and incomplete at the moment. +# The default value is: NO. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary +# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI +# output from the Perl module output. +# The default value is: NO. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely +# formatted so it can be parsed by a human reader. This is useful if you want to +# understand what is going on. On the other hand, if this tag is set to NO, the +# size of the Perl module output will be much smaller and Perl will parse it +# just the same. +# The default value is: YES. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file are +# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful +# so different doxyrules.make files included by the same Makefile don't +# overwrite each other's variables. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_MAKEVAR_PREFIX = + #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- @@ -1526,3 +2187,313 @@ EXTERNAL_GROUPS = YES # The default value is: YES. EXTERNAL_PAGES = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram +# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to +# NO turns the diagrams off. Note that this option also works with HAVE_DOT +# disabled, but it is recommended to install and use dot, since it yields more +# powerful graphs. +# The default value is: YES. + +CLASS_DIAGRAMS = YES + +# You can include diagrams made with dia in doxygen documentation. Doxygen will +# then run dia to produce the diagram and insert it in the documentation. The +# DIA_PATH tag allows you to specify the directory where the dia binary resides. +# If left empty dia is assumed to be found in the default search path. + +DIA_PATH = + +# If set to YES the inheritance and collaboration graphs will hide inheritance +# and usage relations if the target is undocumented or is not a class. +# The default value is: YES. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz (see: +# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent +# Bell Labs. The other options in this section have no effect if this option is +# set to NO +# The default value is: NO. + +HAVE_DOT = NO + +# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed +# to run in parallel. When set to 0 doxygen will base this on the number of +# processors available in the system. You can set it explicitly to a value +# larger than 0 to get control over the balance between CPU load and processing +# speed. +# Minimum value: 0, maximum value: 32, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_NUM_THREADS = 0 + +# When you want a differently looking font in the dot files that doxygen +# generates you can specify the font name using DOT_FONTNAME. You need to make +# sure dot is able to find the font, which can be done by putting it in a +# standard location or by setting the DOTFONTPATH environment variable or by +# setting DOT_FONTPATH to the directory containing the font. +# The default value is: Helvetica. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTNAME = Helvetica + +# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of +# dot graphs. +# Minimum value: 4, maximum value: 24, default value: 10. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the default font as specified with +# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set +# the path where dot can find it using this tag. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTPATH = + +# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for +# each documented class showing the direct and indirect inheritance relations. +# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a +# graph for each documented class showing the direct and indirect implementation +# dependencies (inheritance, containment, and class references variables) of the +# class with other documented classes. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for +# groups, showing the direct groups dependencies. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LOOK = NO + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside the +# class node. If there are many fields or methods and many nodes the graph may +# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the +# number of items for each type to make the size more manageable. Set this to 0 +# for no limit. Note that the threshold may be exceeded by 50% before the limit +# is enforced. So when you set the threshold to 10, up to 15 fields may appear, +# but if the number exceeds 15, the total amount of fields shown is limited to +# 10. +# Minimum value: 0, maximum value: 100, default value: 10. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LIMIT_NUM_FIELDS = 10 + +# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and +# collaboration graphs will show the relations between templates and their +# instances. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +TEMPLATE_RELATIONS = NO + +# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to +# YES then doxygen will generate a graph for each documented file showing the +# direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDE_GRAPH = YES + +# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are +# set to YES then doxygen will generate a graph for each documented file showing +# the direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH tag is set to YES then doxygen will generate a call +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable call graphs for selected +# functions only using the \callgraph command. Disabling a call graph can be +# accomplished by means of the command \hidecallgraph. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable caller graphs for selected +# functions only using the \callergraph command. Disabling a caller graph can be +# accomplished by means of the command \hidecallergraph. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical +# hierarchy of all classes instead of a textual one. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the +# dependencies a directory has on other directories in a graphical way. The +# dependency relations are determined by the #include relations between the +# files in the directories. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. For an explanation of the image formats see the section +# output formats in the documentation of the dot tool (Graphviz (see: +# http://www.graphviz.org/)). +# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order +# to make the SVG files visible in IE 9+ (other browsers do not have this +# requirement). +# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo, +# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and +# png:gdiplus:gdiplus. +# The default value is: png. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_IMAGE_FORMAT = png + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# +# Note that this requires a modern browser other than Internet Explorer. Tested +# and working are Firefox, Chrome, Safari, and Opera. +# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make +# the SVG files visible. Older versions of IE do not have SVG support. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +INTERACTIVE_SVG = NO + +# The DOT_PATH tag can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the \dotfile +# command). +# This tag requires that the tag HAVE_DOT is set to YES. + +DOTFILE_DIRS = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the \mscfile +# command). + +MSCFILE_DIRS = + +# The DIAFILE_DIRS tag can be used to specify one or more directories that +# contain dia files that are included in the documentation (see the \diafile +# command). + +DIAFILE_DIRS = + +# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the +# path where java can find the plantuml.jar file. If left blank, it is assumed +# PlantUML is not used or called during a preprocessing step. Doxygen will +# generate a warning when it encounters a \startuml command in this case and +# will not generate output for the diagram. + +PLANTUML_JAR_PATH = + +# When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a +# configuration file for plantuml. + +PLANTUML_CFG_FILE = + +# When using plantuml, the specified paths are searched for files specified by +# the !include statement in a plantuml block. + +PLANTUML_INCLUDE_PATH = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes +# that will be shown in the graph. If the number of nodes in a graph becomes +# larger than this value, doxygen will truncate the graph, which is visualized +# by representing a node as a red box. Note that doxygen if the number of direct +# children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that +# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. +# Minimum value: 0, maximum value: 10000, default value: 50. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs +# generated by dot. A depth value of 3 means that only nodes reachable from the +# root by following a path via at most 3 edges will be shown. Nodes that lay +# further from the root node will be omitted. Note that setting this option to 1 +# or 2 may greatly reduce the computation time needed for large code bases. Also +# note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. +# Minimum value: 0, maximum value: 1000, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not seem +# to support this out of the box. +# +# Warning: Depending on the platform used, enabling this option may lead to +# badly anti-aliased labels on the edges of a graph (i.e. they become hard to +# read). +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) support +# this, this feature is disabled by default. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page +# explaining the meaning of the various boxes and arrows in the dot generated +# graphs. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot +# files that are used to generate the various graphs. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_CLEANUP = YES diff --git a/3rdparty/utf8proc/LICENSE.md b/3rdparty/utf8proc/LICENSE.md index 86279fc07cd..80fab6ee6ee 100644 --- a/3rdparty/utf8proc/LICENSE.md +++ b/3rdparty/utf8proc/LICENSE.md @@ -7,7 +7,7 @@ whose copyright and license statements are reproduced below, all new work on the utf8proc library is licensed under the [MIT "expat" license](http://opensource.org/licenses/MIT): -*Copyright © 2014-2015 by Steven G. Johnson, Jiahao Chen, Tony Kelman, Jonas Fonseca, and other contributors listed in the git history.* +*Copyright © 2014-2019 by Steven G. Johnson, Jiahao Chen, Tony Kelman, Jonas Fonseca, and other contributors listed in the git history.* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), @@ -51,7 +51,7 @@ DEALINGS IN THE SOFTWARE. ## Unicode data license ## -This software distribution contains derived data from a modified version of +This software contains data (`utf8proc_data.c`) derived from processing the Unicode data files. The following license applies to that data: **COPYRIGHT AND PERMISSION NOTICE** diff --git a/3rdparty/utf8proc/MANIFEST b/3rdparty/utf8proc/MANIFEST index b39f8a81b33..c6df660e0b7 100644 --- a/3rdparty/utf8proc/MANIFEST +++ b/3rdparty/utf8proc/MANIFEST @@ -2,6 +2,8 @@ include/ include/utf8proc.h lib/ lib/libutf8proc.a -lib/libutf8proc.so -> libutf8proc.so.2.1.0 -lib/libutf8proc.so.2 -> libutf8proc.so.2.1.0 -lib/libutf8proc.so.2.1.0 +lib/libutf8proc.so -> libutf8proc.so.2.4.1 +lib/libutf8proc.so.2 -> libutf8proc.so.2.4.1 +lib/libutf8proc.so.2.4.1 +lib/pkgconfig/ +lib/pkgconfig/libutf8proc.pc diff --git a/3rdparty/utf8proc/Makefile b/3rdparty/utf8proc/Makefile index 51995c3889b..fa1c6b09f38 100644 --- a/3rdparty/utf8proc/Makefile +++ b/3rdparty/utf8proc/Makefile @@ -1,18 +1,20 @@ # libutf8proc Makefile # programs -MAKE=make AR?=ar CC?=gcc INSTALL=install FIND=find +PERL=perl # compiler settings CFLAGS ?= -O2 PICFLAG = -fPIC C99FLAG = -std=c99 -WCFLAGS = -Wall -pedantic -UCFLAGS = $(CFLAGS) $(PICFLAG) $(C99FLAG) $(WCFLAGS) -DUTF8PROC_EXPORTS +WCFLAGS = -Wall -Wextra -pedantic +UCFLAGS = $(CPPFLAGS) $(CFLAGS) $(PICFLAG) $(C99FLAG) $(WCFLAGS) -DUTF8PROC_EXPORTS $(UTF8PROC_DEFINES) +LDFLAG_SHARED = -shared +SOFLAG = -Wl,-soname # shared-library version MAJOR.MINOR.PATCH ... this may be *different* # from the utf8proc version number because it indicates ABI compatibility, @@ -21,8 +23,8 @@ UCFLAGS = $(CFLAGS) $(PICFLAG) $(C99FLAG) $(WCFLAGS) -DUTF8PROC_EXPORTS # The API version number is defined in utf8proc.h. # Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt! MAJOR=2 -MINOR=1 -PATCH=0 +MINOR=4 +PATCH=1 OS := $(shell uname) ifeq ($(OS),Darwin) # MacOS X @@ -37,6 +39,10 @@ endif prefix=/usr/local libdir=$(prefix)/lib includedir=$(prefix)/include +pkgconfigdir=$(libdir)/pkgconfig + +pkglibdir=$(libdir:$(prefix)/%=%) +pkgincludedir=$(includedir:$(prefix)/%=%) # meta targets @@ -46,10 +52,11 @@ all: libutf8proc.a libutf8proc.$(SHLIB_EXT) clean: rm -f utf8proc.o libutf8proc.a libutf8proc.$(SHLIB_VERS_EXT) libutf8proc.$(SHLIB_EXT) + rm -f libutf8proc.pc ifneq ($(OS),Darwin) rm -f libutf8proc.so.$(MAJOR) endif - rm -f test/tests.o test/normtest test/graphemetest test/printproperty test/charwidth test/valid test/iterate test/case test/custom + rm -f test/tests.o test/normtest test/graphemetest test/printproperty test/charwidth test/valid test/iterate test/case test/custom test/misc test/iscase rm -rf MANIFEST.new tmp $(MAKE) -C bench clean $(MAKE) -C data clean @@ -74,7 +81,7 @@ libutf8proc.a: utf8proc.o $(AR) rs libutf8proc.a utf8proc.o libutf8proc.so.$(MAJOR).$(MINOR).$(PATCH): utf8proc.o - $(CC) $(LDFLAGS) -shared -o $@ -Wl,-soname -Wl,libutf8proc.so.$(MAJOR) utf8proc.o + $(CC) $(LDFLAGS) $(LDFLAG_SHARED) -o $@ $(SOFLAG) -Wl,libutf8proc.so.$(MAJOR) utf8proc.o chmod a-x $@ libutf8proc.so: libutf8proc.so.$(MAJOR).$(MINOR).$(PATCH) @@ -82,17 +89,27 @@ libutf8proc.so: libutf8proc.so.$(MAJOR).$(MINOR).$(PATCH) ln -f -s libutf8proc.so.$(MAJOR).$(MINOR).$(PATCH) $@.$(MAJOR) libutf8proc.$(MAJOR).dylib: utf8proc.o - $(CC) -dynamiclib -o $@ $^ -install_name $(libdir)/$@ -Wl,-compatibility_version -Wl,$(MAJOR) -Wl,-current_version -Wl,$(MAJOR).$(MINOR).$(PATCH) + $(CC) $(LDFLAGS) -dynamiclib -o $@ $^ -install_name $(libdir)/$@ -Wl,-compatibility_version -Wl,$(MAJOR) -Wl,-current_version -Wl,$(MAJOR).$(MINOR).$(PATCH) libutf8proc.dylib: libutf8proc.$(MAJOR).dylib ln -f -s libutf8proc.$(MAJOR).dylib $@ -install: libutf8proc.a libutf8proc.$(SHLIB_EXT) libutf8proc.$(SHLIB_VERS_EXT) +libutf8proc.pc: libutf8proc.pc.in + sed \ + -e 's#PREFIX#$(prefix)#' \ + -e 's#LIBDIR#$(pkglibdir)#' \ + -e 's#INCLUDEDIR#$(pkgincludedir)#' \ + -e 's#VERSION#$(MAJOR).$(MINOR).$(PATCH)#' \ + libutf8proc.pc.in > libutf8proc.pc + +install: libutf8proc.a libutf8proc.$(SHLIB_EXT) libutf8proc.$(SHLIB_VERS_EXT) libutf8proc.pc mkdir -m 755 -p $(DESTDIR)$(includedir) $(INSTALL) -m 644 utf8proc.h $(DESTDIR)$(includedir) mkdir -m 755 -p $(DESTDIR)$(libdir) $(INSTALL) -m 644 libutf8proc.a $(DESTDIR)$(libdir) $(INSTALL) -m 755 libutf8proc.$(SHLIB_VERS_EXT) $(DESTDIR)$(libdir) + mkdir -m 755 -p $(DESTDIR)$(pkgconfigdir) + $(INSTALL) -m 644 libutf8proc.pc $(DESTDIR)$(pkgconfigdir)/libutf8proc.pc ln -f -s libutf8proc.$(SHLIB_VERS_EXT) $(DESTDIR)$(libdir)/libutf8proc.$(SHLIB_EXT) ifneq ($(OS),Darwin) ln -f -s libutf8proc.$(SHLIB_VERS_EXT) $(DESTDIR)$(libdir)/libutf8proc.so.$(MAJOR) @@ -112,39 +129,53 @@ data/NormalizationTest.txt: data/GraphemeBreakTest.txt: $(MAKE) -C data GraphemeBreakTest.txt +data/Lowercase.txt: + $(MAKE) -C data Lowercase.txt + +data/Uppercase.txt: + $(MAKE) -C data Uppercase.txt + test/tests.o: test/tests.c test/tests.h utf8proc.h $(CC) $(UCFLAGS) -c -o test/tests.o test/tests.c test/normtest: test/normtest.c test/tests.o utf8proc.o utf8proc.h test/tests.h - $(CC) $(UCFLAGS) test/normtest.c test/tests.o utf8proc.o -o $@ + $(CC) $(UCFLAGS) $(LDFLAGS) test/normtest.c test/tests.o utf8proc.o -o $@ test/graphemetest: test/graphemetest.c test/tests.o utf8proc.o utf8proc.h test/tests.h - $(CC) $(UCFLAGS) test/graphemetest.c test/tests.o utf8proc.o -o $@ + $(CC) $(UCFLAGS) $(LDFLAGS) test/graphemetest.c test/tests.o utf8proc.o -o $@ test/printproperty: test/printproperty.c test/tests.o utf8proc.o utf8proc.h test/tests.h - $(CC) $(UCFLAGS) test/printproperty.c test/tests.o utf8proc.o -o $@ + $(CC) $(UCFLAGS) $(LDFLAGS) test/printproperty.c test/tests.o utf8proc.o -o $@ test/charwidth: test/charwidth.c test/tests.o utf8proc.o utf8proc.h test/tests.h - $(CC) $(UCFLAGS) test/charwidth.c test/tests.o utf8proc.o -o $@ + $(CC) $(UCFLAGS) $(LDFLAGS) test/charwidth.c test/tests.o utf8proc.o -o $@ test/valid: test/valid.c test/tests.o utf8proc.o utf8proc.h test/tests.h - $(CC) $(UCFLAGS) test/valid.c test/tests.o utf8proc.o -o $@ + $(CC) $(UCFLAGS) $(LDFLAGS) test/valid.c test/tests.o utf8proc.o -o $@ test/iterate: test/iterate.c test/tests.o utf8proc.o utf8proc.h test/tests.h - $(CC) $(UCFLAGS) test/iterate.c test/tests.o utf8proc.o -o $@ + $(CC) $(UCFLAGS) $(LDFLAGS) test/iterate.c test/tests.o utf8proc.o -o $@ + +test/iscase: test/iscase.c test/tests.o utf8proc.o utf8proc.h test/tests.h + $(CC) $(UCFLAGS) $(LDFLAGS) test/iscase.c test/tests.o utf8proc.o -o $@ test/case: test/case.c test/tests.o utf8proc.o utf8proc.h test/tests.h - $(CC) $(UCFLAGS) test/case.c test/tests.o utf8proc.o -o $@ + $(CC) $(UCFLAGS) $(LDFLAGS) test/case.c test/tests.o utf8proc.o -o $@ test/custom: test/custom.c test/tests.o utf8proc.o utf8proc.h test/tests.h - $(CC) $(UCFLAGS) test/custom.c test/tests.o utf8proc.o -o $@ + $(CC) $(UCFLAGS) $(LDFLAGS) test/custom.c test/tests.o utf8proc.o -o $@ + +test/misc: test/misc.c test/tests.o utf8proc.o utf8proc.h test/tests.h + $(CC) $(UCFLAGS) $(LDFLAGS) -DUNICODE_VERSION='"'`$(PERL) -ne "/^UNICODE_VERSION=/ and print $$';" data/Makefile`'"' test/misc.c test/tests.o utf8proc.o -o $@ -check: test/normtest data/NormalizationTest.txt test/graphemetest data/GraphemeBreakTest.txt test/printproperty test/case test/custom test/charwidth test/valid test/iterate bench/bench.c bench/util.c bench/util.h utf8proc.o +check: test/normtest data/NormalizationTest.txt data/Lowercase.txt data/Uppercase.txt test/graphemetest data/GraphemeBreakTest.txt test/printproperty test/case test/iscase test/custom test/charwidth test/misc test/valid test/iterate bench/bench.c bench/util.c bench/util.h utf8proc.o $(MAKE) -C bench test/normtest data/NormalizationTest.txt test/graphemetest data/GraphemeBreakTest.txt test/charwidth + test/misc test/valid test/iterate test/case + test/iscase data/Lowercase.txt data/Uppercase.txt test/custom diff --git a/3rdparty/utf8proc/NEWS.md b/3rdparty/utf8proc/NEWS.md index cf5764fb52c..6428b8c2efc 100644 --- a/3rdparty/utf8proc/NEWS.md +++ b/3rdparty/utf8proc/NEWS.md @@ -1,5 +1,89 @@ # utf8proc release history # +## Version 2.6.1 ## + +2020-12-15 + + - Bugfix in `utf8proc_grapheme_break_stateful` for `NULL` state argument, which + also broke `utf8proc_grapheme_break`. + +## Version 2.6 ## + +2020-11-23 + + - New `utf8proc_islower` and `utf8proc_isupper` functions ([#196]). + + - Bugfix for manual calls to `grapheme_break_extended` for initial characters ([#205]). + + - Various build and portability improvements. + +## Version 2.5 ## + +2019-03-27 + +- Unicode 13 support ([#179]). + +- No longer report zero width for category Sk ([#167]). + +- `cmake` support improvements ([#173]). + +## Version 2.4 ## + +2019-05-10 + +- Unicode 12.1 support ([#156]). + +- New `-DUTF8PROC_INSTALL=No` option for `cmake` builds to disable installation ([#152]). + +- Better `make` support for HP-UX ([#154]). + +- Fixed incorrect `UTF8PROC_VERSION_MINOR` version number in header and bumped shared-library version. + +## Version 2.3 ## + +2019-03-30 + +- Unicode 12 support ([#148]). + +- New function `utf8proc_unicode_version` to return the supported Unicode version ([#151]). + +- Simpler character-width computation that no longer uses GNU Unifont metrics: East-Asian wide + characters have width 2, and all other printable characters have width 1 ([#150]). + +- Fix `CHARBOUND` option for `utf8proc_map` to preserve U+FFFE and U+FFFF non-characters ([#149]). + +- Various build-system improvements ([#141], [#142], [#147]). + +## Version 2.2 ## + +2018-07-24 + +- Unicode 11 support ([#132] and [#140]). + +- `utf8proc_NFKC_Casefold` convenience function for `NFKC_Casefold` + normalization ([#133]). + +- `UTF8PROC_STRIPNA` option to strip unassigned codepoints ([#133]). + +- Support building static libraries on Windows (callers need to + `#define UTF8PROC_STATIC`) ([#123]). + +- `cmake` fix to avoid defining `UTF8PROC_EXPORTS` globally ([#121]). + +- `toupper` of ß (U+00df) now yields ẞ (U+1E9E) ([#134]), similar to musl; + case-folding still yields the standard "ss" mapping. + +- `utf8proc_charwidth` now returns `1` for U+00AD (soft hyphen) and + for unassigned/PUA codepoints ([#135]). + +## Version 2.1.1 ## + +2018-04-27 + +- Fixed composition bug ([#128]). + +- Minor build fixes ([#94], [#99], [#113], [#125]). + ## Version 2.1 ## 2016-12-26: @@ -271,33 +355,62 @@ Release of version 1.0.1 2006-06-02: initial release of version 0.1 -[#6]: https://github.com/JuliaLang/utf8proc/issues/6 -[#13]: https://github.com/JuliaLang/utf8proc/issues/13 -[#17]: https://github.com/JuliaLang/utf8proc/issues/17 -[#20]: https://github.com/JuliaLang/utf8proc/issues/20 -[#22]: https://github.com/JuliaLang/utf8proc/issues/22 -[#24]: https://github.com/JuliaLang/utf8proc/issues/24 -[#27]: https://github.com/JuliaLang/utf8proc/issues/27 -[#28]: https://github.com/JuliaLang/utf8proc/issues/28 -[#29]: https://github.com/JuliaLang/utf8proc/issues/29 -[#32]: https://github.com/JuliaLang/utf8proc/issues/32 -[#35]: https://github.com/JuliaLang/utf8proc/issues/35 -[#40]: https://github.com/JuliaLang/utf8proc/issues/40 -[#43]: https://github.com/JuliaLang/utf8proc/issues/43 -[#45]: https://github.com/JuliaLang/utf8proc/issues/45 -[#47]: https://github.com/JuliaLang/utf8proc/issues/47 -[#51]: https://github.com/JuliaLang/utf8proc/issues/51 -[#55]: https://github.com/JuliaLang/utf8proc/issues/55 -[#58]: https://github.com/JuliaLang/utf8proc/issues/58 -[#62]: https://github.com/JuliaLang/utf8proc/issues/62 -[#66]: https://github.com/JuliaLang/utf8proc/issues/66 -[#68]: https://github.com/JuliaLang/utf8proc/issues/68 -[#70]: https://github.com/JuliaLang/utf8proc/issues/70 -[#77]: https://github.com/JuliaLang/utf8proc/issues/77 -[#78]: https://github.com/JuliaLang/utf8proc/issues/78 -[#79]: https://github.com/JuliaLang/utf8proc/issues/79 -[#80]: https://github.com/JuliaLang/utf8proc/issues/80 -[#84]: https://github.com/JuliaLang/utf8proc/pull/84 -[#88]: https://github.com/JuliaLang/utf8proc/pull/88 -[#89]: https://github.com/JuliaLang/utf8proc/pull/89 -[#90]: https://github.com/JuliaLang/utf8proc/issues/90 +<!--- generated by NEWS-update.jl: --> + +[#6]: https://github.com/JuliaStrings/utf8proc/issues/6 +[#13]: https://github.com/JuliaStrings/utf8proc/issues/13 +[#17]: https://github.com/JuliaStrings/utf8proc/issues/17 +[#20]: https://github.com/JuliaStrings/utf8proc/issues/20 +[#22]: https://github.com/JuliaStrings/utf8proc/issues/22 +[#24]: https://github.com/JuliaStrings/utf8proc/issues/24 +[#27]: https://github.com/JuliaStrings/utf8proc/issues/27 +[#28]: https://github.com/JuliaStrings/utf8proc/issues/28 +[#29]: https://github.com/JuliaStrings/utf8proc/issues/29 +[#32]: https://github.com/JuliaStrings/utf8proc/issues/32 +[#35]: https://github.com/JuliaStrings/utf8proc/issues/35 +[#40]: https://github.com/JuliaStrings/utf8proc/issues/40 +[#43]: https://github.com/JuliaStrings/utf8proc/issues/43 +[#45]: https://github.com/JuliaStrings/utf8proc/issues/45 +[#47]: https://github.com/JuliaStrings/utf8proc/issues/47 +[#51]: https://github.com/JuliaStrings/utf8proc/issues/51 +[#55]: https://github.com/JuliaStrings/utf8proc/issues/55 +[#58]: https://github.com/JuliaStrings/utf8proc/issues/58 +[#62]: https://github.com/JuliaStrings/utf8proc/issues/62 +[#66]: https://github.com/JuliaStrings/utf8proc/issues/66 +[#68]: https://github.com/JuliaStrings/utf8proc/issues/68 +[#70]: https://github.com/JuliaStrings/utf8proc/issues/70 +[#77]: https://github.com/JuliaStrings/utf8proc/issues/77 +[#78]: https://github.com/JuliaStrings/utf8proc/issues/78 +[#79]: https://github.com/JuliaStrings/utf8proc/issues/79 +[#80]: https://github.com/JuliaStrings/utf8proc/issues/80 +[#84]: https://github.com/JuliaStrings/utf8proc/issues/84 +[#88]: https://github.com/JuliaStrings/utf8proc/issues/88 +[#89]: https://github.com/JuliaStrings/utf8proc/issues/89 +[#90]: https://github.com/JuliaStrings/utf8proc/issues/90 +[#94]: https://github.com/JuliaStrings/utf8proc/issues/94 +[#99]: https://github.com/JuliaStrings/utf8proc/issues/99 +[#113]: https://github.com/JuliaStrings/utf8proc/issues/113 +[#121]: https://github.com/JuliaStrings/utf8proc/issues/121 +[#123]: https://github.com/JuliaStrings/utf8proc/issues/123 +[#125]: https://github.com/JuliaStrings/utf8proc/issues/125 +[#128]: https://github.com/JuliaStrings/utf8proc/issues/128 +[#132]: https://github.com/JuliaStrings/utf8proc/issues/132 +[#133]: https://github.com/JuliaStrings/utf8proc/issues/133 +[#134]: https://github.com/JuliaStrings/utf8proc/issues/134 +[#135]: https://github.com/JuliaStrings/utf8proc/issues/135 +[#140]: https://github.com/JuliaStrings/utf8proc/issues/140 +[#141]: https://github.com/JuliaStrings/utf8proc/issues/141 +[#142]: https://github.com/JuliaStrings/utf8proc/issues/142 +[#147]: https://github.com/JuliaStrings/utf8proc/issues/147 +[#148]: https://github.com/JuliaStrings/utf8proc/issues/148 +[#149]: https://github.com/JuliaStrings/utf8proc/issues/149 +[#150]: https://github.com/JuliaStrings/utf8proc/issues/150 +[#151]: https://github.com/JuliaStrings/utf8proc/issues/151 +[#152]: https://github.com/JuliaStrings/utf8proc/issues/152 +[#154]: https://github.com/JuliaStrings/utf8proc/issues/154 +[#156]: https://github.com/JuliaStrings/utf8proc/issues/156 +[#167]: https://github.com/JuliaStrings/utf8proc/issues/167 +[#173]: https://github.com/JuliaStrings/utf8proc/issues/173 +[#179]: https://github.com/JuliaStrings/utf8proc/issues/179 +[#196]: https://github.com/JuliaStrings/utf8proc/issues/196 +[#205]: https://github.com/JuliaStrings/utf8proc/issues/205 diff --git a/3rdparty/utf8proc/README.md b/3rdparty/utf8proc/README.md index cb9f69478df..08e7a09c026 100644 --- a/3rdparty/utf8proc/README.md +++ b/3rdparty/utf8proc/README.md @@ -1,9 +1,8 @@ # utf8proc -[](https://travis-ci.org/JuliaLang/utf8proc) -[](https://ci.appveyor.com/project/tkelman/utf8proc/branch/master) +[](https://travis-ci.org/JuliaStrings/utf8proc) +[](https://ci.appveyor.com/project/StevenGJohnson/utf8proc) - -[utf8proc](http://julialang.org/utf8proc/) is a small, clean C +[utf8proc](http://juliastrings.github.io/utf8proc/) is a small, clean C library that provides Unicode normalization, case-folding, and other operations for data in the [UTF-8 encoding](http://en.wikipedia.org/wiki/UTF-8). It was [initially @@ -32,7 +31,28 @@ the included `LICENSE.md` file for more detailed information. ## Quick Start -For compilation of the C library run `make`. +Typical users should download a [utf8proc release](http://juliastrings.github.io/utf8proc/releases/) rather than cloning directly from github. + +For compilation of the C library, run `make`. You can also install the library and header file with `make install` (by default into `/usr/local/lib` and `/usr/local/bin`, but this can be changed by `make prefix=/some/dir`). `make check` runs some tests, and `make clean` deletes all of the generated files. + +Alternatively, you can compile with `cmake`, e.g. by +```sh +mkdir build +cd build +cmake .. +make +``` + +### Using other compilers +The included `Makefile` supports GNU/Linux flavors and MacOS with `gcc`-like compilers; Windows users will typically use `cmake`. + +For other Unix-like systems and other compilers, you may need to pass modified settings to `make` in order to use the correct compilation flags for building shared libraries on your system. + +For HP-UX with HP's `aCC` compiler and GNU Make (installed as `gmake`), you can compile with +``` +gmake CC=/opt/aCC/bin/aCC CFLAGS="+O2" PICFLAG="+z" C99FLAG="-Ae" WCFLAGS="+w" LDFLAG_SHARED="-b" SOFLAG="-Wl,+h" +``` +To run `gmake install` you will need GNU coreutils for the `install` command, and you may want to pass `prefix=/opt libdir=/opt/lib/hpux32` or similar to change the installation location. ## General Information @@ -40,7 +60,7 @@ The C library is found in this directory after successful compilation and is named `libutf8proc.a` (for the static library) and `libutf8proc.so` (for the dynamic library). -The Unicode version supported is 9.0.0. +The Unicode version supported is 13.0.0. For Unicode normalizations, the following options are used: diff --git a/3rdparty/utf8proc/appveyor.yml b/3rdparty/utf8proc/appveyor.yml index 4e7aa622c98..7ac03b57cd2 100644 --- a/3rdparty/utf8proc/appveyor.yml +++ b/3rdparty/utf8proc/appveyor.yml @@ -16,23 +16,27 @@ build_script: throw "There are newer queued builds for this pull request, failing early." } - mkdir msvc_static - cd msvc_static - - cmake .. + - cmake .. -DUTF8PROC_ENABLE_TESTING=On - cmake --build . + - ctest - mkdir ..\msvc_shared - cd ..\msvc_shared - - cmake .. -DBUILD_SHARED_LIBS=ON + - cmake .. -DBUILD_SHARED_LIBS=ON -DUTF8PROC_ENABLE_TESTING=On - cmake --build . + - ctest - set PATH=C:\MinGW\bin;%PATH% - C:\MinGW\msys\1.0\bin\sh --login -c " cd /c/projects/utf8proc && mkdir mingw_static && cd mingw_static && - cmake .. -DCMAKE_VERBOSE_MAKEFILE=ON -G'MSYS Makefiles' && + cmake .. -DCMAKE_VERBOSE_MAKEFILE=ON -DUTF8PROC_ENABLE_TESTING=On -G'MSYS Makefiles' && make && + ctest && mkdir ../mingw_shared && cd ../mingw_shared && - cmake .. -DCMAKE_VERBOSE_MAKEFILE=ON -DBUILD_SHARED_LIBS=ON -G'MSYS Makefiles' && - make + cmake .. -DCMAKE_VERBOSE_MAKEFILE=ON -DBUILD_SHARED_LIBS=ON -DUTF8PROC_ENABLE_TESTING=On -G'MSYS Makefiles' && + make && + ctest " on_finish: diff --git a/3rdparty/utf8proc/bench/Makefile b/3rdparty/utf8proc/bench/Makefile index ea12dcbba27..8b82be2afd6 100644 --- a/3rdparty/utf8proc/bench/Makefile +++ b/3rdparty/utf8proc/bench/Makefile @@ -1,7 +1,8 @@ CURL=curl CC = cc -CFLAGS = -O2 -std=c99 -pedantic -Wall +CFLAGS ?= -O2 +CFLAGS += -std=c99 -pedantic -Wall all: bench diff --git a/3rdparty/utf8proc/bench/icu.c b/3rdparty/utf8proc/bench/icu.c index 3ac3514158c..a162c32da8d 100644 --- a/3rdparty/utf8proc/bench/icu.c +++ b/3rdparty/utf8proc/bench/icu.c @@ -41,7 +41,7 @@ int main(int argc, char **argv) /* ICU's insane normalization API requires you to know the size of the destination buffer in advance, - or alternatively to repeatly try normalizing and + or alternatively to repeatedly try normalizing and double the buffer size until it succeeds. Here, I just allocate a huge destination buffer to avoid the issue. */ UChar *udest = (UChar*) malloc(10*ulen * sizeof(UChar)); diff --git a/3rdparty/utf8proc/bench/unistring.c b/3rdparty/utf8proc/bench/unistring.c index 2cc5ce8d990..8a97f3c701e 100644 --- a/3rdparty/utf8proc/bench/unistring.c +++ b/3rdparty/utf8proc/bench/unistring.c @@ -1,4 +1,4 @@ -/* comparitive benchmark of GNU libunistring */ +/* comparative benchmark of GNU libunistring */ #include <stdio.h> #include <stdlib.h> diff --git a/3rdparty/utf8proc/data/Makefile b/3rdparty/utf8proc/data/Makefile index 19d375f6253..6d3667c63c0 100644 --- a/3rdparty/utf8proc/data/Makefile +++ b/3rdparty/utf8proc/data/Makefile @@ -1,7 +1,7 @@ # Unicode data generation rules. Except for the test data files, most # users will not use these Makefile rules, which are primarily to re-generate # unicode_data.c when we get a new Unicode version or charwidth data; they -# require ruby, fontforge, and julia to be installed. +# require ruby and julia to be installed. # programs CURL=curl @@ -9,58 +9,55 @@ RUBY=ruby PERL=perl MAKE=make JULIA=julia -FONTFORGE=fontforge CURLFLAGS = --retry 5 --location .PHONY: clean .DELETE_ON_ERROR: -utf8proc_data.c.new: data_generator.rb UnicodeData.txt GraphemeBreakProperty.txt DerivedCoreProperties.txt CompositionExclusions.txt CaseFolding.txt CharWidths.txt +utf8proc_data.c.new: data_generator.rb UnicodeData.txt GraphemeBreakProperty.txt DerivedCoreProperties.txt CompositionExclusions.txt CaseFolding.txt CharWidths.txt emoji-data.txt $(RUBY) data_generator.rb < UnicodeData.txt > $@ -# GNU Unifont version for font metric calculations: -UNIFONT_VERSION=9.0.04 - -unifont.ttf: - $(CURL) $(CURLFLAGS) -o $@ $(URLCACHE)https://mirrors.kernel.org/gnu/unifont/unifont-$(UNIFONT_VERSION)/unifont-$(UNIFONT_VERSION).ttf - -unifont_upper.ttf: - $(CURL) $(CURLFLAGS) -o $@ $(URLCACHE)https://mirrors.kernel.org/gnu/unifont/unifont-$(UNIFONT_VERSION)/unifont_upper-$(UNIFONT_VERSION).ttf - -%.sfd: %.ttf - $(FONTFORGE) -lang=ff -c "Open(\"$<\");Save(\"$@\");Quit(0);" - -CharWidths.txt: charwidths.jl unifont.sfd unifont_upper.sfd EastAsianWidth.txt +CharWidths.txt: charwidths.jl EastAsianWidth.txt $(JULIA) charwidths.jl > $@ -# Unicode data version -UNICODE_VERSION=9.0.0 +# Unicode data version (must also update utf8proc_unicode_version function) +UNICODE_VERSION=13.0.0 UnicodeData.txt: - $(CURL) $(CURLFLAGS) -o $@ -O $(URLCACHE)http://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/UnicodeData.txt + $(CURL) $(CURLFLAGS) -o $@ https://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/UnicodeData.txt EastAsianWidth.txt: - $(CURL) $(CURLFLAGS) -o $@ -O $(URLCACHE)http://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/EastAsianWidth.txt + $(CURL) $(CURLFLAGS) -o $@ $(URLCACHE)https://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/EastAsianWidth.txt GraphemeBreakProperty.txt: - $(CURL) $(CURLFLAGS) -o $@ -O $(URLCACHE)http://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/auxiliary/GraphemeBreakProperty.txt + $(CURL) $(CURLFLAGS) -o $@ $(URLCACHE)https://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/auxiliary/GraphemeBreakProperty.txt DerivedCoreProperties.txt: - $(CURL) $(CURLFLAGS) -o $@ -O $(URLCACHE)http://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/DerivedCoreProperties.txt + $(CURL) $(CURLFLAGS) -o $@ $(URLCACHE)https://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/DerivedCoreProperties.txt CompositionExclusions.txt: - $(CURL) $(CURLFLAGS) -o $@ -O $(URLCACHE)http://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/CompositionExclusions.txt + $(CURL) $(CURLFLAGS) -o $@ $(URLCACHE)https://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/CompositionExclusions.txt CaseFolding.txt: - $(CURL) $(CURLFLAGS) -o $@ -O $(URLCACHE)http://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/CaseFolding.txt + $(CURL) $(CURLFLAGS) -o $@ $(URLCACHE)https://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/CaseFolding.txt NormalizationTest.txt: - $(CURL) $(CURLFLAGS) -o $@ -O $(URLCACHE)http://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/NormalizationTest.txt + $(CURL) $(CURLFLAGS) -o $@ $(URLCACHE)https://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/NormalizationTest.txt GraphemeBreakTest.txt: - $(CURL) $(CURLFLAGS) $(URLCACHE)http://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/auxiliary/GraphemeBreakTest.txt | $(PERL) -pe 's,÷,/,g;s,×,+,g' > $@ + $(CURL) $(CURLFLAGS) -o $@ $(URLCACHE)https://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/auxiliary/GraphemeBreakTest.txt + +emoji-data.txt: + $(CURL) $(CURLFLAGS) -o $@ $(URLCACHE)https://unicode.org/Public/$(UNICODE_VERSION)/ucd/emoji/emoji-data.txt + +Uppercase.txt: DerivedCoreProperties.txt + $(RUBY) -e 'puts File.read("DerivedCoreProperties.txt")[/# Derived Property: Uppercase.*?# Total code points:/m]' > $@ + +Lowercase.txt: DerivedCoreProperties.txt + $(RUBY) -e 'puts File.read("DerivedCoreProperties.txt")[/# Derived Property: Lowercase.*?# Total code points:/m]' > $@ clean: - rm -f UnicodeData.txt EastAsianWidth.txt GraphemeBreakProperty.txt DerivedCoreProperties.txt CompositionExclusions.txt CaseFolding.txt NormalizationTest.txt GraphemeBreakTest.txt CharWidths.txt unifont*.ttf unifont*.sfd + rm -f UnicodeData.txt EastAsianWidth.txt GraphemeBreakProperty.txt DerivedCoreProperties.txt CompositionExclusions.txt CaseFolding.txt NormalizationTest.txt GraphemeBreakTest.txt CharWidths.txt emoji-data.txt + rm -f Uppercase.txt Lowercase.txt rm -f utf8proc_data.c.new diff --git a/3rdparty/utf8proc/data/charwidths.jl b/3rdparty/utf8proc/data/charwidths.jl index bdcbc6c59d0..1346217d810 100644 --- a/3rdparty/utf8proc/data/charwidths.jl +++ b/3rdparty/utf8proc/data/charwidths.jl @@ -1,23 +1,15 @@ # Following work by @jiahao, we compute character widths using a combination of -# * advance widths from GNU Unifont (advance width 512 = 1 en) +# * character category # * UAX 11: East Asian Width # * a few exceptions as needed # Adapted from http://nbviewer.ipython.org/gist/jiahao/07e8b08bf6d8671e9734 # +# We used to also use data from GNU Unifont, but that has proven unreliable +# and unlikely to match widths assumed by terminals. +# # Requires Julia (obviously) and FontForge. ############################################################################# -# Julia 0.3/0.4 compatibility (taken from Compat package) -if VERSION < v"0.4.0-dev+1387" - typealias AbstractString String -end -if VERSION < v"0.4.0-dev+1419" - const UInt32 = Uint32 -end -if VERSION < v"0.4.0-dev+3874" - Base.parse{T<:Integer}(::Type{T}, s::AbstractString) = parseint(T, s) -end - CharWidths = Dict{Int,Int}() ############################################################################# @@ -25,29 +17,55 @@ CharWidths = Dict{Int,Int}() # to minimize bootstrapping complexity when a new version of Unicode comes out. catcode(c) = ccall((:utf8proc_category,"../libutf8proc"), Cint, (Int32,), c) -# use Base.UTF8proc module to get category codes constants, since -# we won't change these in utf8proc. -import Base.UTF8proc +# utf8proc category constants (must match h) +const UTF8PROC_CATEGORY_CN = 0 +const UTF8PROC_CATEGORY_LU = 1 +const UTF8PROC_CATEGORY_LL = 2 +const UTF8PROC_CATEGORY_LT = 3 +const UTF8PROC_CATEGORY_LM = 4 +const UTF8PROC_CATEGORY_LO = 5 +const UTF8PROC_CATEGORY_MN = 6 +const UTF8PROC_CATEGORY_MC = 7 +const UTF8PROC_CATEGORY_ME = 8 +const UTF8PROC_CATEGORY_ND = 9 +const UTF8PROC_CATEGORY_NL = 10 +const UTF8PROC_CATEGORY_NO = 11 +const UTF8PROC_CATEGORY_PC = 12 +const UTF8PROC_CATEGORY_PD = 13 +const UTF8PROC_CATEGORY_PS = 14 +const UTF8PROC_CATEGORY_PE = 15 +const UTF8PROC_CATEGORY_PI = 16 +const UTF8PROC_CATEGORY_PF = 17 +const UTF8PROC_CATEGORY_PO = 18 +const UTF8PROC_CATEGORY_SM = 19 +const UTF8PROC_CATEGORY_SC = 20 +const UTF8PROC_CATEGORY_SK = 21 +const UTF8PROC_CATEGORY_SO = 22 +const UTF8PROC_CATEGORY_ZS = 23 +const UTF8PROC_CATEGORY_ZL = 24 +const UTF8PROC_CATEGORY_ZP = 25 +const UTF8PROC_CATEGORY_CC = 26 +const UTF8PROC_CATEGORY_CF = 27 +const UTF8PROC_CATEGORY_CS = 28 +const UTF8PROC_CATEGORY_CO = 29 ############################################################################# # Use a default width of 1 for all character categories that are -# letter/symbol/number-like. This can be overriden by Unifont or UAX 11 +# letter/symbol/number-like, as well as for unassigned/private-use chars. +# This can be overridden by UAX 11 # below, but provides a useful nonzero fallback for new codepoints when # a new Unicode version has been released but Unifont hasn't been updated yet. zerowidth = Set{Int}() # categories that may contain zero-width chars -push!(zerowidth, UTF8proc.UTF8PROC_CATEGORY_CN) -push!(zerowidth, UTF8proc.UTF8PROC_CATEGORY_MN) -push!(zerowidth, UTF8proc.UTF8PROC_CATEGORY_MC) -push!(zerowidth, UTF8proc.UTF8PROC_CATEGORY_ME) -push!(zerowidth, UTF8proc.UTF8PROC_CATEGORY_SK) -push!(zerowidth, UTF8proc.UTF8PROC_CATEGORY_ZS) -push!(zerowidth, UTF8proc.UTF8PROC_CATEGORY_ZL) -push!(zerowidth, UTF8proc.UTF8PROC_CATEGORY_ZP) -push!(zerowidth, UTF8proc.UTF8PROC_CATEGORY_CC) -push!(zerowidth, UTF8proc.UTF8PROC_CATEGORY_CF) -push!(zerowidth, UTF8proc.UTF8PROC_CATEGORY_CS) -push!(zerowidth, UTF8proc.UTF8PROC_CATEGORY_CO) +push!(zerowidth, UTF8PROC_CATEGORY_MN) +push!(zerowidth, UTF8PROC_CATEGORY_MC) +push!(zerowidth, UTF8PROC_CATEGORY_ME) +# push!(zerowidth, UTF8PROC_CATEGORY_SK) # see issue #167 +push!(zerowidth, UTF8PROC_CATEGORY_ZL) +push!(zerowidth, UTF8PROC_CATEGORY_ZP) +push!(zerowidth, UTF8PROC_CATEGORY_CC) +push!(zerowidth, UTF8PROC_CATEGORY_CF) +push!(zerowidth, UTF8PROC_CATEGORY_CS) for c in 0x0000:0x110000 if catcode(c) ∉ zerowidth CharWidths[c] = 1 @@ -55,49 +73,13 @@ for c in 0x0000:0x110000 end ############################################################################# -# Widths from GNU Unifont - -#Read sfdfile for character widths -function parsesfd(filename::AbstractString, CharWidths::Dict{Int,Int}=Dict{Int,Int}()) - state=:seekchar - lineno = 0 - codepoint = width = nothing - for line in readlines(open(filename)) - lineno += 1 - if state==:seekchar #StartChar: nonmarkingreturn - if contains(line, "StartChar: ") - codepoint = nothing - width = nothing - state = :readdata - end - elseif state==:readdata #Encoding: 65538 -1 2, Width: 1024 - contains(line, "Encoding:") && (codepoint = parse(Int, split(line)[3])) - contains(line, "Width:") && (width = parse(Int, split(line)[2])) - if codepoint!=nothing && width!=nothing && codepoint >= 0 - w=div(width, 512) # 512 units to the en - if w > 0 - # only add nonzero widths, since (1) the default is zero - # and (2) this circumvents some apparent bugs in Unifont - # (https://savannah.gnu.org/bugs/index.php?45395) - CharWidths[codepoint] = w - end - state = :seekchar - end - end - end - CharWidths -end -CharWidths=parsesfd("unifont.sfd", CharWidths) -CharWidths=parsesfd("unifont_upper.sfd", CharWidths) - -############################################################################# # Widths from UAX #11: East Asian Width -# .. these take precedence over the Unifont width for all codepoints +# .. these take precedence for all codepoints # listed explicitly as wide/full/narrow/half-width for line in readlines(open("EastAsianWidth.txt")) #Strip comments - line[1] == '#' && continue + (isempty(line) || line[1] == '#') && continue precomment = split(line, '#')[1] #Parse code point range and width code tokens = split(precomment, ';') @@ -113,7 +95,7 @@ for line in readlines(open("EastAsianWidth.txt")) for c in charstart:charend if width=="W" || width=="F" # wide or full CharWidths[c]=2 - elseif width=="Na"|| width=="H" # narrow or half + elseif width=="Na"|| width=="H" CharWidths[c]=1 end end @@ -126,56 +108,53 @@ end for c in keys(CharWidths) cat = catcode(c) - # make sure format control character (category Cf) have width 0, - # except for the Arabic characters 0x06xx (see unicode std 6.2, sec. 8.2) - if cat==UTF8proc.UTF8PROC_CATEGORY_CF && c ∉ [0x0601,0x0602,0x0603,0x06dd] + # make sure format control character (category Cf) have width 0 + # (some of these, like U+0601, can have a width in some cases + # but normally act like prepended combining marks. U+fff9 etc + # are also odd, but have zero width in typical terminal contexts) + if cat==UTF8PROC_CATEGORY_CF CharWidths[c]=0 end # Unifont has nonzero width for a number of non-spacing combining # characters, e.g. (in 7.0.06): f84,17b4,17b5,180b,180d,2d7f, and # the variation selectors - if cat==UTF8proc.UTF8PROC_CATEGORY_MN + if cat==UTF8PROC_CATEGORY_MN CharWidths[c]=0 end - # We also assign width of zero to unassigned and private-use + # We also assign width of one to unassigned and private-use # codepoints (Unifont includes ConScript Unicode Registry PUA fonts, - # but since these are nonstandard it seems questionable to recognize them). - if cat==UTF8proc.UTF8PROC_CATEGORY_CO || cat==UTF8proc.UTF8PROC_CATEGORY_CN - CharWidths[c]=0 + # but since these are nonstandard it seems questionable to use Unifont metrics; + # if they are printed as the replacement character U+FFFD they will have width 1). + if cat==UTF8PROC_CATEGORY_CO || cat==UTF8PROC_CATEGORY_CN + CharWidths[c]=1 end # for some reason, Unifont has width-2 glyphs for ASCII control chars - if cat==UTF8proc.UTF8PROC_CATEGORY_CC + if cat==UTF8PROC_CATEGORY_CC CharWidths[c]=0 end end +#Soft hyphen is typically printed as a hyphen (-) in terminals. +CharWidths[0x00ad]=1 + #By definition, should have zero width (on the same line) #0x002028 '
' category: Zl name: LINE SEPARATOR/ #0x002029 '
' category: Zp name: PARAGRAPH SEPARATOR/ CharWidths[0x2028]=0 CharWidths[0x2029]=0 -#By definition, should be narrow = width of 1 en space -#0x00202f ' ' category: Zs name: NARROW NO-BREAK SPACE/ -CharWidths[0x202f]=1 - -#By definition, should be wide = width of 1 em space -#0x002001 ' ' category: Zs name: EM QUAD/ -#0x002003 ' ' category: Zs name: EM SPACE/ -CharWidths[0x2001]=2 -CharWidths[0x2003]=2 - ############################################################################# -# Output (to a file or pipe) for processing by data_generator.rb -# ... don't bother to output zero widths since that will be the default. +# Output (to a file or pipe) for processing by data_generator.rb, +# encoded as a sequence of intervals. firstc = 0x000000 lastv = 0 -uhex(c) = uppercase(hex(c,4)) +uhex(c) = uppercase(string(c,base=16,pad=4)) for c in 0x0000:0x110000 + global firstc, lastv v = get(CharWidths, c, 0) if v != lastv || c == 0x110000 v < 4 || error("invalid charwidth $v for $c") diff --git a/3rdparty/utf8proc/data/data_generator.rb b/3rdparty/utf8proc/data/data_generator.rb index 97c9033a419..293d0f5a5e3 100644 --- a/3rdparty/utf8proc/data/data_generator.rb +++ b/3rdparty/utf8proc/data/data_generator.rb @@ -6,6 +6,8 @@ # production use. +# Copyright (c) 2018 Steven G. Johnson, Tony Kelman, Keno Fischer, +# Benito van der Zander, Michaël Meyer, and other contributors. # Copyright (c) 2009 Public Software Group e. V., Berlin, Germany # # Permission is hereby granted, free of charge, to any person obtaining a @@ -75,6 +77,26 @@ $ignorable_list.each_line do |entry| end end +$uppercase_list = File.read("DerivedCoreProperties.txt")[/# Derived Property: Uppercase.*?# Total code points:/m] +$uppercase = [] +$uppercase_list.each_line do |entry| + if entry =~ /^([0-9A-F]+)\.\.([0-9A-F]+)/ + $1.hex.upto($2.hex) { |e2| $uppercase << e2 } + elsif entry =~ /^[0-9A-F]+/ + $uppercase << $&.hex + end +end + +$lowercase_list = File.read("DerivedCoreProperties.txt")[/# Derived Property: Lowercase.*?# Total code points:/m] +$lowercase = [] +$lowercase_list.each_line do |entry| + if entry =~ /^([0-9A-F]+)\.\.([0-9A-F]+)/ + $1.hex.upto($2.hex) { |e2| $lowercase << e2 } + elsif entry =~ /^[0-9A-F]+/ + $lowercase << $&.hex + end +end + $grapheme_boundclass_list = File.read("GraphemeBreakProperty.txt") $grapheme_boundclass = Hash.new("UTF8PROC_BOUNDCLASS_OTHER") $grapheme_boundclass_list.each_line do |entry| @@ -85,6 +107,19 @@ $grapheme_boundclass_list.each_line do |entry| end end +$emoji_data_list = File.read("emoji-data.txt") +$emoji_data_list.each_line do |entry| + if entry =~ /^([0-9A-F]+)\.\.([0-9A-F]+)\s*;\s*Extended_Pictographic\W/ + $1.hex.upto($2.hex) { |e2| $grapheme_boundclass[e2] = "UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC" } + elsif entry =~ /^([0-9A-F]+)\s*;\s*Extended_Pictographic\W/ + $grapheme_boundclass[$1.hex] = "UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC" + elsif entry =~ /^([0-9A-F]+)\.\.([0-9A-F]+)\s*;\s*Emoji_Modifier\W/ + $1.hex.upto($2.hex) { |e2| $grapheme_boundclass[e2] = "UTF8PROC_BOUNDCLASS_EXTEND" } + elsif entry =~ /^([0-9A-F]+)\s*;\s*Emoji_Modifier\W/ + $grapheme_boundclass[$1.hex] = "UTF8PROC_BOUNDCLASS_EXTEND" + end +end + $charwidth_list = File.read("CharWidths.txt") $charwidth = Hash.new(0) $charwidth_list.each_line do |entry| @@ -104,7 +139,7 @@ $excl_version = $excl_version.chomp.split("\n").collect { |e| e.hex } $case_folding_string = File.open("CaseFolding.txt", :encoding => 'utf-8').read $case_folding = {} $case_folding_string.chomp.split("\n").each do |line| - next unless line =~ /([0-9A-F]+); [CFS]; ([0-9A-F ]+);/i + next unless line =~ /([0-9A-F]+); [CF]; ([0-9A-F ]+);/i $case_folding[$1.hex] = $2.split(" ").collect { |e| e.hex } end @@ -137,13 +172,13 @@ def cpary2utf16encoded(array) end def cpary2c(array) return "UINT16_MAX" if array.nil? || array.length == 0 - lencode = array.length - 1 #no sequence has len 0, so we encode len 1 as 0, len 2 as 1, ... + lencode = array.length - 1 #no sequence has len 0, so we encode len 1 as 0, len 2 as 1, ... array = cpary2utf16encoded(array) if lencode >= 7 #we have only 3 bits for the length (which is already cutting it close. might need to change it to 2 bits in future Unicode versions) - array = [lencode] + array + array = [lencode] + array lencode = 7 - end - idx = pushary(array) + end + idx = pushary(array) raise "Array index out of bound" if idx > 0x1FFF return "#{idx | (lencode << 13)}" end @@ -188,9 +223,12 @@ class UnicodeChar @decomp_mapping = ($8=='') ? nil : $8.split.collect { |element| element.hex } @bidi_mirrored = ($13=='Y') ? true : false - @uppercase_mapping = ($16=='') ? nil : $16.hex - @lowercase_mapping = ($17=='') ? nil : $17.hex - @titlecase_mapping = ($18=='') ? nil : $18.hex + # issue #130: use nonstandard uppercase ß -> ẞ + # issue #195: if character is uppercase but has no lowercase mapping, + # then make lowercase mapping = itself (vice versa for lowercase) + @uppercase_mapping = ($16=='') ? (code==0x00df ? 0x1e9e : ($17=='' && $lowercase.include?(code) ? code : nil)) : $16.hex + @lowercase_mapping = ($17=='') ? ($16=='' && $uppercase.include?(code) ? code : nil) : $17.hex + @titlecase_mapping = ($18=='') ? (code==0x00df ? 0x1e9e : nil) : $18.hex end def case_folding $case_folding[code] @@ -260,17 +298,17 @@ chars.each do |char| end unless comb2nd_indicies[dm1] comb2nd_indicies_sorted_keys << dm1 - comb2nd_indicies[dm1] = comb2nd_indicies.keys.length + comb2nd_indicies[dm1] = comb2nd_indicies.keys.length end comb_array[comb1st_indicies[dm0]] ||= [] raise "Duplicate canonical mapping: #{char.code} #{dm0} #{dm1}" if comb_array[comb1st_indicies[dm0]][comb2nd_indicies[dm1]] comb_array[comb1st_indicies[dm0]][comb2nd_indicies[dm1]] = char.code - + comb2nd_indicies_nonbasic[dm1] = true if char.code > 0xFFFF end char.c_decomp_mapping = cpary2c(char.decomp_mapping) char.c_case_folding = cpary2c(char.case_folding) -end +end comb_indicies = {} cumoffset = 0 @@ -281,7 +319,7 @@ comb1st_indicies.each do |dm0, index| last = nil offset = 0 comb2nd_indicies_sorted_keys.each_with_index do |dm1, b| - if comb_array[index][b] + if comb_array[index][b] first = offset unless first last = offset last += 1 if comb2nd_indicies_nonbasic[dm1] @@ -340,7 +378,7 @@ for code in 0...0x110000 end end -$stdout << "const utf8proc_uint16_t utf8proc_sequences[] = {\n " +$stdout << "static const utf8proc_uint16_t utf8proc_sequences[] = {\n " i = 0 $int_array.each do |entry| i += 1 @@ -352,7 +390,7 @@ $int_array.each do |entry| end $stdout << "};\n\n" -$stdout << "const utf8proc_uint16_t utf8proc_stage1table[] = {\n " +$stdout << "static const utf8proc_uint16_t utf8proc_stage1table[] = {\n " i = 0 stage1.each do |entry| i += 1 @@ -364,7 +402,7 @@ stage1.each do |entry| end $stdout << "};\n\n" -$stdout << "const utf8proc_uint16_t utf8proc_stage2table[] = {\n " +$stdout << "static const utf8proc_uint16_t utf8proc_stage2table[] = {\n " i = 0 stage2.flatten.each do |entry| i += 1 @@ -376,8 +414,8 @@ stage2.flatten.each do |entry| end $stdout << "};\n\n" -$stdout << "const utf8proc_property_t utf8proc_properties[] = {\n" -$stdout << " {0, 0, 0, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false,false,false,false, 0, 0, UTF8PROC_BOUNDCLASS_OTHER},\n" +$stdout << "static const utf8proc_property_t utf8proc_properties[] = {\n" +$stdout << " {0, 0, 0, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false,false,false,false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER},\n" properties.each { |line| $stdout << line } @@ -385,13 +423,13 @@ $stdout << "};\n\n" -$stdout << "const utf8proc_uint16_t utf8proc_combinations[] = {\n " +$stdout << "static const utf8proc_uint16_t utf8proc_combinations[] = {\n " i = 0 comb1st_indicies.keys.each_index do |a| offset = 0 $stdout << comb1st_indicies_firstoffsets[a] << ", " << comb1st_indicies_lastoffsets[a] << ", " comb2nd_indicies_sorted_keys.each_with_index do |dm1, b| - break if offset > comb1st_indicies_lastoffsets[a] + break if offset > comb1st_indicies_lastoffsets[a] if offset >= comb1st_indicies_firstoffsets[a] i += 1 if i == 8 @@ -403,9 +441,8 @@ comb1st_indicies.keys.each_index do |a| $stdout << (v & 0xFFFF) << ", " end offset += 1 - offset += 1 if comb2nd_indicies_nonbasic[dm1] + offset += 1 if comb2nd_indicies_nonbasic[dm1] end $stdout << "\n" end $stdout << "};\n\n" - diff --git a/3rdparty/utf8proc/libutf8proc.pc.in b/3rdparty/utf8proc/libutf8proc.pc.in new file mode 100644 index 00000000000..820b43fd887 --- /dev/null +++ b/3rdparty/utf8proc/libutf8proc.pc.in @@ -0,0 +1,10 @@ +prefix=PREFIX +exec_prefix=${prefix} +libdir=${prefix}/LIBDIR +includedir=${prefix}/INCLUDEDIR + +Name: libutf8proc +Description: UTF8 processing +Version: VERSION +Libs: -L${libdir} -lutf8proc +Cflags: -I${includedir} -DUTF8PROC_EXPORTS diff --git a/3rdparty/utf8proc/test/case.c b/3rdparty/utf8proc/test/case.c index 39958e3e933..4a98a6390b5 100644 --- a/3rdparty/utf8proc/test/case.c +++ b/3rdparty/utf8proc/test/case.c @@ -13,13 +13,22 @@ int main(int argc, char **argv) for (c = 0; c <= 0x110000; ++c) { utf8proc_int32_t l = utf8proc_tolower(c); utf8proc_int32_t u = utf8proc_toupper(c); + utf8proc_int32_t t = utf8proc_totitle(c); check(l == c || utf8proc_codepoint_valid(l), "invalid tolower"); check(u == c || utf8proc_codepoint_valid(u), "invalid toupper"); + check(t == c || utf8proc_codepoint_valid(t), "invalid totitle"); + + if (utf8proc_codepoint_valid(c) && (l == u) != (l == t) && + /* Unicode 11: Georgian Mkhedruli chars have uppercase but no titlecase. */ + !(((c >= 0x10d0 && c <= 0x10fa) || c >= (0x10fd && c <= 0x10ff)) && l != u)) { + fprintf(stderr, "unexpected titlecase %x for lowercase %x / uppercase %x\n", t, l, c); + ++error; + } if (sizeof(wint_t) > 2 || c < (1<<16)) { wint_t l0 = towlower(c), u0 = towupper(c); - + /* OS unicode tables may be out of date. But if they do have a lower/uppercase mapping, hopefully it is correct? */ @@ -44,6 +53,23 @@ int main(int argc, char **argv) } } check(!error, "utf8proc case conversion FAILED %d tests.", error); + + /* issue #130 */ + check(utf8proc_toupper(0x00df) == 0x1e9e && + utf8proc_totitle(0x00df) == 0x1e9e && + utf8proc_tolower(0x00df) == 0x00df && + utf8proc_tolower(0x1e9e) == 0x00df && + utf8proc_toupper(0x1e9e) == 0x1e9e, + "incorrect 0x00df/0x1e9e case conversions"); + utf8proc_uint8_t str_00df[] = {0xc3, 0x9f, 0x00}; + utf8proc_uint8_t str_1e9e[] = {0xe1, 0xba, 0x9e, 0x00}; + utf8proc_uint8_t *s1 = utf8proc_NFKC_Casefold(str_00df); + utf8proc_uint8_t *s2 = utf8proc_NFKC_Casefold(str_1e9e); + check(!strcmp((char*)s1, "ss") && + !strcmp((char*)s2, "ss"), + "incorrect 0x00df/0x1e9e casefold normalization"); + free(s1); + free(s2); printf("More up-to-date than OS unicode tables for %d tests.\n", better); printf("utf8proc case conversion tests SUCCEEDED.\n"); return 0; diff --git a/3rdparty/utf8proc/test/charwidth.c b/3rdparty/utf8proc/test/charwidth.c index 330f18eebb4..c5cbbd7cdc1 100644 --- a/3rdparty/utf8proc/test/charwidth.c +++ b/3rdparty/utf8proc/test/charwidth.c @@ -2,70 +2,76 @@ #include <ctype.h> #include <wchar.h> +static int my_unassigned(int c) { + int cat = utf8proc_get_property(c)->category; + return (cat == UTF8PROC_CATEGORY_CN) || (cat == UTF8PROC_CATEGORY_CO); +} + static int my_isprint(int c) { - int cat = utf8proc_get_property(c)->category; - return (UTF8PROC_CATEGORY_LU <= cat && cat <= UTF8PROC_CATEGORY_ZS) || - (c == 0x0601 || c == 0x0602 || c == 0x0603 || c == 0x06dd); + int cat = utf8proc_get_property(c)->category; + return (UTF8PROC_CATEGORY_LU <= cat && cat <= UTF8PROC_CATEGORY_ZS) || + (c == 0x0601 || c == 0x0602 || c == 0x0603 || c == 0x06dd || c == 0x00ad) || + (cat == UTF8PROC_CATEGORY_CN) || (cat == UTF8PROC_CATEGORY_CO); } int main(int argc, char **argv) { - int c, error = 0, updates = 0; + int c, error = 0, updates = 0; + + (void) argc; /* unused */ + (void) argv; /* unused */ - (void) argc; /* unused */ - (void) argv; /* unused */ + /* some simple sanity tests of the character widths */ + for (c = 0; c <= 0x110000; ++c) { + int cat = utf8proc_get_property(c)->category; + int w = utf8proc_charwidth(c); + if ((cat == UTF8PROC_CATEGORY_MN || cat == UTF8PROC_CATEGORY_ME) && w > 0) { + fprintf(stderr, "nonzero width %d for combining char %x\n", w, c); + error += 1; + } + if (w == 0 && + ((cat >= UTF8PROC_CATEGORY_LU && cat <= UTF8PROC_CATEGORY_LO) || + (cat >= UTF8PROC_CATEGORY_ND && cat <= UTF8PROC_CATEGORY_SC) || + (cat >= UTF8PROC_CATEGORY_SO && cat <= UTF8PROC_CATEGORY_ZS))) { + fprintf(stderr, "zero width for symbol-like char %x\n", c); + error += 1; + } + if (c <= 127 && ((!isprint(c) && w > 0) || (isprint(c) && wcwidth(c) != w))) { + fprintf(stderr, "wcwidth %d mismatch %d for %s ASCII %x\n", + wcwidth(c), w, + isprint(c) ? "printable" : "non-printable", c); + error += 1; + } + if (!my_isprint(c) && w > 0) { + fprintf(stderr, "non-printing %x had width %d\n", c, w); + error += 1; + } + if (my_unassigned(c) && w != 1) { + fprintf(stderr, "unexpected width %d for unassigned char %x\n", w, c); + error += 1; + } + } + check(!error, "utf8proc_charwidth FAILED %d tests.", error); - /* some simple sanity tests of the character widths */ - for (c = 0; c <= 0x110000; ++c) { - int cat = utf8proc_get_property(c)->category; - int w = utf8proc_charwidth(c); - if ((cat == UTF8PROC_CATEGORY_MN || cat == UTF8PROC_CATEGORY_ME) && - w > 0) { - fprintf(stderr, "nonzero width %d for combining char %x\n", w, c); - error = 1; - } - if (w == 0 && - ((cat >= UTF8PROC_CATEGORY_LU && cat <= UTF8PROC_CATEGORY_LO) || - (cat >= UTF8PROC_CATEGORY_ND && cat <= UTF8PROC_CATEGORY_SC) || - (cat >= UTF8PROC_CATEGORY_SO && cat <= UTF8PROC_CATEGORY_ZS))) { - fprintf(stderr, "zero width for symbol-like char %x\n", c); - error = 1; - } - if (c <= 127 && ((!isprint(c) && w > 0) || - (isprint(c) && wcwidth(c) != w))) { - fprintf(stderr, "wcwidth %d mismatch %d for %s ASCII %x\n", - wcwidth(c), w, - isprint(c) ? "printable" : "non-printable", c); - error = 1; - } - if (!my_isprint(c) && w > 0) { - fprintf(stderr, "non-printing %x had width %d\n", c, w); - error = 1; - } - } - check(!error, "utf8proc_charwidth FAILED tests."); + check(utf8proc_charwidth(0x00ad) == 1, "incorrect width for U+00AD (soft hyphen)"); + check(utf8proc_charwidth(0xe000) == 1, "incorrect width for U+e000 (PUA)"); - /* print some other information by compariing with system wcwidth */ - printf("Mismatches with system wcwidth (not necessarily errors):\n"); - for (c = 0; c <= 0x110000; ++c) { - int w = utf8proc_charwidth(c); - int wc = wcwidth(c); - if (sizeof(wchar_t) == 2 && c >= (1<<16)) continue; - /* lots of these errors for out-of-date system unicode tables */ - if (wc == -1 && my_isprint(c) && w > 0) { - updates += 1; -#if 0 - printf(" wcwidth(%x) = -1 for printable char\n", c); -#endif - } - if (wc == -1 && !my_isprint(c) && w > 0) - printf(" wcwidth(%x) = -1 for non-printable width-%d char\n", c, w); - if (wc >= 0 && wc != w) - printf(" wcwidth(%x) = %d != charwidth %d\n", c, wc, w); - } - printf(" ... (positive widths for %d chars unknown to wcwidth) ...\n", - updates); - printf("Character-width tests SUCCEEDED.\n"); + /* print some other information by compariing with system wcwidth */ + printf("Mismatches with system wcwidth (not necessarily errors):\n"); + for (c = 0; c <= 0x110000; ++c) { + int w = utf8proc_charwidth(c); + int wc = wcwidth(c); + if (sizeof(wchar_t) == 2 && c >= (1<<16)) continue; + /* lots of these errors for out-of-date system unicode tables */ + if (wc == -1 && my_isprint(c) && !my_unassigned(c) && w > 0) + updates += 1; + if (wc == -1 && !my_isprint(c) && w > 0) + printf(" wcwidth(%x) = -1 for non-printable width-%d char\n", c, w); + if (wc >= 0 && wc != w) + printf(" wcwidth(%x) = %d != charwidth %d\n", c, wc, w); + } + printf(" ... (positive widths for %d chars unknown to wcwidth) ...\n", updates); + printf("Character-width tests SUCCEEDED.\n"); - return 0; + return 0; } diff --git a/3rdparty/utf8proc/test/custom.c b/3rdparty/utf8proc/test/custom.c index f85b3cc2bc6..fe4239d91b4 100644 --- a/3rdparty/utf8proc/test/custom.c +++ b/3rdparty/utf8proc/test/custom.c @@ -23,5 +23,6 @@ int main(void) check(strlen((char*) output) == 6, "incorrect output length"); check(!memcmp(correct, output, 7), "incorrect output data"); free(output); + printf("map_custom tests SUCCEEDED.\n"); return 0; } diff --git a/3rdparty/utf8proc/test/graphemetest.c b/3rdparty/utf8proc/test/graphemetest.c index eb3645b9a0c..22880fc9f14 100644 --- a/3rdparty/utf8proc/test/graphemetest.c +++ b/3rdparty/utf8proc/test/graphemetest.c @@ -1,74 +1,127 @@ #include "tests.h" +/* check one line in the format of GraphemeBreakTest.txt */ +void checkline(const char *_buf, bool verbose) { + size_t bi = 0, si = 0; + utf8proc_uint8_t src[1024]; /* more than long enough for all of our tests */ + const unsigned char *buf = (const unsigned char *) _buf; + + while (buf[bi]) { + bi = skipspaces(buf, bi); + if (buf[bi] == 0xc3 && buf[bi+1] == 0xb7) { /* U+00f7 = grapheme break */ + src[si++] = '/'; + bi += 2; + } + else if (buf[bi] == 0xc3 && buf[bi+1] == 0x97) { /* U+00d7 = no break */ + bi += 2; + } + else if (buf[bi] == '#') { /* start of comments */ + break; + } + else if (buf[bi] == '/') { /* for convenience, also accept / as grapheme break */ + src[si++] = '/'; + bi += 1; + } + else { /* hex-encoded codepoint */ + size_t len = encode((unsigned char*) (src + si), buf + bi) - 1; + while (src[si]) ++si; /* advance to NUL termination */ + bi += len; + } + } + if (si && src[si-1] == '/') + --si; /* no break after final grapheme */ + src[si] = 0; /* NUL-terminate */ + + if (si) { /* test utf8proc_map */ + utf8proc_uint8_t utf8[1024]; /* copy src without 0xff grapheme separators */ + size_t i = 0, j = 0; + utf8proc_ssize_t glen, k; + utf8proc_uint8_t *g; /* utf8proc_map grapheme results */ + while (i < si) { + if (src[i] != '/') + utf8[j++] = src[i++]; + else + i++; + } + glen = utf8proc_map(utf8, j, &g, UTF8PROC_CHARBOUND); + if (glen == UTF8PROC_ERROR_INVALIDUTF8) { + /* the test file contains surrogate codepoints, which are only for UTF-16 */ + printf("line %zd: ignoring invalid UTF-8 codepoints\n", lineno); + } + else { + check(glen >= 0, "utf8proc_map error = %s", + utf8proc_errmsg(glen)); + for (k = 0; k <= glen; ++k) + if (g[k] == 0xff) + g[k] = '/'; /* easier-to-read output (/ is not in test strings) */ + check(!strcmp((char*)g, (char*)src), + "grapheme mismatch: \"%s\" instead of \"%s\"", (char*)g, (char*)src); + } + free(g); + } + + if (si) { /* test manual calls to utf8proc_grapheme_break_stateful */ + utf8proc_int32_t state = 0, prev_codepoint = 0; + size_t i = 0; + utf8proc_bool expectbreak = false; + do { + utf8proc_int32_t codepoint; + i += utf8proc_iterate(src + i, si - i, &codepoint); + check(codepoint >= 0, "invalid UTF-8 data"); + if (codepoint == 0x002F) + expectbreak = true; + else { + if (prev_codepoint != 0) { + check(expectbreak == utf8proc_grapheme_break_stateful(prev_codepoint, codepoint, &state), + "grapheme mismatch: between 0x%04x and 0x%04x in \"%s\"", prev_codepoint, codepoint, (char*) src); + } + expectbreak = false; + prev_codepoint = codepoint; + } + } while (i < si); + } + + if (verbose) + printf("passed grapheme test: \"%s\"\n", (char*) src); +} + int main(int argc, char **argv) { - char *buf = NULL; - size_t bufsize = 0; + unsigned char buf[8192]; FILE *f = argc > 1 ? fopen(argv[1], "r") : NULL; - utf8proc_uint8_t src[1024]; - int len; - + check(f != NULL, "error opening GraphemeBreakTest.txt"); - while (getline(&buf, &bufsize, f) > 0) { - size_t bi = 0, si = 0; - lineno += 1; - - if (lineno % 100 == 0) + while (simple_getline(buf, f) > 0) { + if ((++lineno) % 100 == 0) printf("checking line %zd...\n", lineno); - if (buf[0] == '#') continue; - - while (buf[bi]) { - bi = skipspaces(buf, bi); - if (buf[bi] == '/') { /* grapheme break */ - src[si++] = '/'; - bi++; - } - else if (buf[bi] == '+') { /* no break */ - bi++; - } - else if (buf[bi] == '#') { /* start of comments */ - break; - } - else { /* hex-encoded codepoint */ - len = encode((char*) (src + si), buf + bi) - 1; - while (src[si]) ++si; /* advance to NUL termination */ - bi += len; - } - } - if (si && src[si-1] == '/') - --si; /* no break after final grapheme */ - src[si] = 0; /* NUL-terminate */ - - if (si) { - utf8proc_uint8_t utf8[1024]; /* copy src without 0xff grapheme separators */ - size_t i = 0, j = 0; - utf8proc_ssize_t glen; - utf8proc_uint8_t *g; /* utf8proc_map grapheme results */ - while (i < si) { - if (src[i] != '/') - utf8[j++] = src[i++]; - else - i++; - } - glen = utf8proc_map(utf8, j, &g, UTF8PROC_CHARBOUND); - if (glen == UTF8PROC_ERROR_INVALIDUTF8) { - /* the test file contains surrogate codepoints, which are only for UTF-16 */ - printf("line %zd: ignoring invalid UTF-8 codepoints\n", lineno); - } - else { - check(glen >= 0, "utf8proc_map error = %s", - utf8proc_errmsg(glen)); - for (i = 0; i <= glen; ++i) - if (g[i] == 0xff) - g[i] = '/'; /* easier-to-read output (/ is not in test strings) */ - check(!strcmp((char*)g, (char*)src), - "grapheme mismatch: \"%s\" instead of \"%s\"", (char*)g, (char*)src); - } - free(g); - } + checkline((char *) buf, false); } fclose(f); printf("Passed tests after %zd lines!\n", lineno); + + printf("Performing regression tests...\n"); + + /* issue 144 */ + { + utf8proc_uint8_t input[] = {0xef,0xbf,0xbf,0xef,0xbf,0xbe,0x00}; /* "\uffff\ufffe" */ + utf8proc_uint8_t output[] = {0xff,0xef,0xbf,0xbf,0xff,0xef,0xbf,0xbe,0x00}; /* with 0xff grapheme markers */ + utf8proc_ssize_t glen; + utf8proc_uint8_t *g; + glen = utf8proc_map(input, 6, &g, UTF8PROC_CHARBOUND); + check(!strcmp((char*)g, (char*)output), "mishandled u+ffff and u+fffe grapheme breaks"); + free(g); + }; + + /* https://github.com/JuliaLang/julia/issues/37680 */ + checkline("/ 1f1f8 1f1ea / 1f1f8 1f1ea /", true); /* Two swedish flags after each other */ + checkline("/ 1f926 1f3fc 200d 2642 fe0f /", true); /* facepalm + pale skin + zwj + male sign + FE0F */ + checkline("/ 1f468 1f3fb 200d 1f91d 200d 1f468 1f3fd /", true); /* man face + pale skin + zwj + hand holding + zwj + man face + dark skin */ + + check(utf8proc_grapheme_break(0x03b1, 0x03b2), "failed 03b1 / 03b2 test"); + check(!utf8proc_grapheme_break(0x03b1, 0x0302), "failed 03b1 0302 test"); + + printf("Passed regression tests!\n"); + return 0; } diff --git a/3rdparty/utf8proc/test/iscase.c b/3rdparty/utf8proc/test/iscase.c new file mode 100644 index 00000000000..f3f8cf31b40 --- /dev/null +++ b/3rdparty/utf8proc/test/iscase.c @@ -0,0 +1,62 @@ +#include "tests.h" + +int read_range(FILE *f, utf8proc_int32_t *start, utf8proc_int32_t *end) +{ + unsigned char buf[8192]; + size_t len = simple_getline(buf, f); + size_t pos = skipspaces(buf, 0); + unsigned char s[16]; + if (pos == len || buf[pos] == '#') return 0; + pos += encode(s, buf + pos) - 1; + check(s[0], "invalid line %s in data", buf); + utf8proc_iterate((utf8proc_uint8_t*) s, -1, start); + if (buf[pos] == '.' && buf[pos+1] == '.') { + encode(s, buf + pos + 2); + check(s[0], "invalid line %s in data", buf); + utf8proc_iterate((utf8proc_uint8_t*) s, -1, end); + } + else + *end = *start; + return 1; +} + +int test_iscase(const char *fname, int (*iscase)(utf8proc_int32_t), + utf8proc_int32_t (*thatcase)(utf8proc_int32_t)) +{ + FILE *f = fopen(fname, "r"); + int lines = 0, tests = 0, success = 1; + utf8proc_int32_t c = 0; + + check(f != NULL, "error opening data file \"%s\"\n", fname); + + while (success && !feof(f)) { + utf8proc_int32_t start, end; + if (read_range(f, &start, &end)) { + for (; c < start; ++c) { + check(!iscase(c), "failed !iscase(%04x) in %s\n", c, fname); + } + for (; c <= end; ++c) { + check(iscase(c), "failed iscase(%04x) in %s\n", c, fname); + check(thatcase(c) == c, "inconsistent thatcase(%04x) in %s\n", c, fname); + ++tests; + } + } + ++lines; + } + for (; c <= 0x110000; ++c) { + check(!iscase(c), "failed !iscase(%04x) in %s\n", c, fname); + } + + printf("Checked %d characters from %d lines of %s\n", tests, lines, fname); + fclose(f); + return success; +} + +int main(int argc, char **argv) +{ + check(argc == 3, "Expected Lowercase.txt and Uppercase.txt as arguments"); + check(test_iscase(argv[1], utf8proc_islower, utf8proc_tolower), "Lowercase tests failed"); + check(test_iscase(argv[2], utf8proc_isupper, utf8proc_toupper), "Uppercase tests failed"); + printf("utf8proc iscase tests SUCCEEDED.\n"); + return 0; +} diff --git a/3rdparty/utf8proc/test/iterate.c b/3rdparty/utf8proc/test/iterate.c index c1674b79952..b8e9feb01b5 100644 --- a/3rdparty/utf8proc/test/iterate.c +++ b/3rdparty/utf8proc/test/iterate.c @@ -35,6 +35,8 @@ int main(int argc, char **argv) uint32_t byt; unsigned char buf[16]; + (void) argc; (void) argv; /* unused */ + tests = error = 0; // Check valid sequences that were considered valid erroneously before @@ -54,7 +56,7 @@ int main(int argc, char **argv) CHECKVALID(3, 0xbe, 4); CHECKVALID(3, 0xbf, 4); } - + // Continuation byte not after lead for (byt = 0x80; byt < 0xc0; byt++) { CHECKINVALID(0, byt, 1); diff --git a/3rdparty/utf8proc/test/misc.c b/3rdparty/utf8proc/test/misc.c new file mode 100644 index 00000000000..9156f95541d --- /dev/null +++ b/3rdparty/utf8proc/test/misc.c @@ -0,0 +1,51 @@ +/* Miscellaneous tests, e.g. regression tests */ + +#include "tests.h" + +static void issue128(void) /* #128 */ +{ + utf8proc_uint8_t input[] = {0x72, 0xcc, 0x87, 0xcc, 0xa3, 0x00}; /* "r\u0307\u0323" */ + utf8proc_uint8_t nfc[] = {0xe1, 0xb9, 0x9b, 0xcc, 0x87, 0x00}; /* "\u1E5B\u0307" */ + utf8proc_uint8_t nfd[] = {0x72, 0xcc, 0xa3, 0xcc, 0x87, 0x00}; /* "r\u0323\u0307" */ + utf8proc_uint8_t *nfc_out, *nfd_out; + nfc_out = utf8proc_NFC(input); + printf("NFC \"%s\" -> \"%s\" vs. \"%s\"\n", (char*)input, (char*)nfc_out, (char*)nfc); + check(strlen((char*) nfc_out) == 5, "incorrect nfc length"); + check(!memcmp(nfc, nfc_out, 6), "incorrect nfc data"); + nfd_out = utf8proc_NFD(input); + printf("NFD \"%s\" -> \"%s\" vs. \"%s\"\n", (char*)input, (char*)nfd_out, (char*)nfd); + check(strlen((char*) nfd_out) == 5, "incorrect nfd length"); + check(!memcmp(nfd, nfd_out, 6), "incorrect nfd data"); + free(nfd_out); free(nfc_out); +} + +static void issue102(void) /* #128 */ +{ + utf8proc_uint8_t input[] = {0x58, 0xe2, 0x81, 0xa5, 0x45, 0xcc, 0x80, 0xc2, 0xad, 0xe1, 0xb4, 0xac, 0x00}; /* "X\u2065E\u0300\u00ad\u1d2c" */ + utf8proc_uint8_t stripna[] = {0x78, 0xc3, 0xa8, 0x61, 0x00}; /* "x\u00e8a" */ + utf8proc_uint8_t correct[] = {0x78, 0xe2, 0x81, 0xa5, 0xc3, 0xa8, 0x61, 0x00}; /* "x\u2065\u00e8a" */ + utf8proc_uint8_t *output; + utf8proc_map(input, 0, &output, UTF8PROC_NULLTERM | UTF8PROC_STABLE | + UTF8PROC_COMPOSE | UTF8PROC_COMPAT | UTF8PROC_CASEFOLD | UTF8PROC_IGNORE | UTF8PROC_STRIPNA); + printf("NFKC_Casefold \"%s\" -> \"%s\" vs. \"%s\"\n", (char*)input, (char*)output, (char*)stripna); + check(strlen((char*) output) == 4, "incorrect NFKC_Casefold+stripna length"); + check(!memcmp(stripna, output, 5), "incorrect NFKC_Casefold+stripna data"); + free(output); + output = utf8proc_NFKC_Casefold(input); + printf("NFKC_Casefold \"%s\" -> \"%s\" vs. \"%s\"\n", (char*)input, (char*)output, (char*)correct); + check(strlen((char*) output) == 7, "incorrect NFKC_Casefold length"); + check(!memcmp(correct, output, 8), "incorrect NFKC_Casefold data"); + free(output); +} + +int main(void) +{ + issue128(); + issue102(); +#ifdef UNICODE_VERSION + printf("Unicode version: Makefile has %s, has API %s\n", UNICODE_VERSION, utf8proc_unicode_version()); + check(!strcmp(UNICODE_VERSION, utf8proc_unicode_version()), "utf8proc_unicode_version mismatch"); +#endif + printf("Misc tests SUCCEEDED.\n"); + return 0; +} diff --git a/3rdparty/utf8proc/test/normtest.c b/3rdparty/utf8proc/test/normtest.c index 555c14c84bf..627ee79fd26 100644 --- a/3rdparty/utf8proc/test/normtest.c +++ b/3rdparty/utf8proc/test/normtest.c @@ -1,21 +1,20 @@ #include "tests.h" #define CHECK_NORM(NRM, norm, src) { \ - char *src_norm = (char*) utf8proc_ ## NRM((utf8proc_uint8_t*) src); \ - check(!strcmp(norm, src_norm), \ + unsigned char *src_norm = (unsigned char*) utf8proc_ ## NRM((utf8proc_uint8_t*) src); \ + check(!strcmp((char *) norm, (char *) src_norm), \ "normalization failed for %s -> %s", src, norm); \ free(src_norm); \ } int main(int argc, char **argv) { - char *buf = NULL; - size_t bufsize = 0; + unsigned char buf[8192]; FILE *f = argc > 1 ? fopen(argv[1], "r") : NULL; - char source[1024], NFC[1024], NFD[1024], NFKC[1024], NFKD[1024]; + unsigned char source[1024], NFC[1024], NFD[1024], NFKC[1024], NFKD[1024]; check(f != NULL, "error opening NormalizationTest.txt"); - while (getline(&buf, &bufsize, f) > 0) { + while (simple_getline(buf, f) > 0) { size_t offset; lineno += 1; diff --git a/3rdparty/utf8proc/test/printproperty.c b/3rdparty/utf8proc/test/printproperty.c index 2819aa1e881..709e6a72b15 100644 --- a/3rdparty/utf8proc/test/printproperty.c +++ b/3rdparty/utf8proc/test/printproperty.c @@ -4,46 +4,57 @@ int main(int argc, char **argv) { - int i; + int i; - for (i = 1; i < argc; ++i) { - unsigned int c; - if (!strcmp(argv[i], "-V")) { - printf("utf8proc version %s\n", utf8proc_version()); - continue; - } - check(sscanf(argv[i],"%x",&c) == 1, "invalid hex input %s", argv[i]); - const utf8proc_property_t *p = utf8proc_get_property(c); - printf("U+%s:\n" - " category = %s\n" - " combining_class = %d\n" - " bidi_class = %d\n" - " decomp_type = %d\n" - " uppercase_mapping = %x\n" - " lowercase_mapping = %x\n" - " titlecase_mapping = %x\n" - " comb_index = %d\n" - " bidi_mirrored = %d\n" - " comp_exclusion = %d\n" - " ignorable = %d\n" - " control_boundary = %d\n" - " boundclass = %d\n" - " charwidth = %d\n", - argv[i], - utf8proc_category_string(c), - p->combining_class, - p->bidi_class, - p->decomp_type, - utf8proc_toupper(c), - utf8proc_tolower(c), - utf8proc_totitle(c), - p->comb_index, - p->bidi_mirrored, - p->comp_exclusion, - p->ignorable, - p->control_boundary, - p->boundclass, - utf8proc_charwidth(c)); - } - return 0; + for (i = 1; i < argc; ++i) { + utf8proc_uint8_t cstr[16], *map; + unsigned int c; + if (!strcmp(argv[i], "-V")) { + printf("utf8proc version %s\n", utf8proc_version()); + continue; + } + check(sscanf(argv[i],"%x",&c) == 1, "invalid hex input %s", argv[i]); + const utf8proc_property_t *p = utf8proc_get_property(c); + + if (utf8proc_codepoint_valid(c)) + cstr[utf8proc_encode_char(c, cstr)] = 0; + else + strcat((char*)cstr, "N/A"); + utf8proc_map(cstr, 0, &map, UTF8PROC_NULLTERM | UTF8PROC_CASEFOLD); + + printf("U+%s: %s\n" + " category = %s\n" + " combining_class = %d\n" + " bidi_class = %d\n" + " decomp_type = %d\n" + " uppercase_mapping = %04x (seqindex %04x)%s\n" + " lowercase_mapping = %04x (seqindex %04x)%s\n" + " titlecase_mapping = %04x (seqindex %04x)\n" + " casefold = %s\n" + " comb_index = %d\n" + " bidi_mirrored = %d\n" + " comp_exclusion = %d\n" + " ignorable = %d\n" + " control_boundary = %d\n" + " boundclass = %d\n" + " charwidth = %d\n", + argv[i], (char*) cstr, + utf8proc_category_string(c), + p->combining_class, + p->bidi_class, + p->decomp_type, + utf8proc_toupper(c), p->uppercase_seqindex, utf8proc_isupper(c) ? " (isupper)" : "", + utf8proc_tolower(c), p->lowercase_seqindex, utf8proc_islower(c) ? " (islower)" : "", + utf8proc_totitle(c), p->titlecase_seqindex, + (char *) map, + p->comb_index, + p->bidi_mirrored, + p->comp_exclusion, + p->ignorable, + p->control_boundary, + p->boundclass, + utf8proc_charwidth(c)); + free(map); + } + return 0; } diff --git a/3rdparty/utf8proc/test/tests.c b/3rdparty/utf8proc/test/tests.c index 0fb0da36305..629edfff373 100644 --- a/3rdparty/utf8proc/test/tests.c +++ b/3rdparty/utf8proc/test/tests.c @@ -17,7 +17,7 @@ void check(int cond, const char *format, ...) } } -size_t skipspaces(const char *buf, size_t i) +size_t skipspaces(const unsigned char *buf, size_t i) { while (isspace(buf[i])) ++i; return i; @@ -27,7 +27,7 @@ size_t skipspaces(const char *buf, size_t i) separated by whitespace, and terminated by any character not in [0-9a-fA-F] or whitespace, then stores the corresponding utf8 string in dest, returning the number of bytes read from buf */ -size_t encode(char *dest, const char *buf) +size_t encode(unsigned char *dest, const unsigned char *buf) { size_t i = 0, j, d = 0; for (;;) { @@ -39,8 +39,20 @@ size_t encode(char *dest, const char *buf) dest[d] = 0; /* NUL-terminate destination string */ return i + 1; } - check(sscanf(buf + i, "%x", (unsigned int *)&c) == 1, "invalid hex input %s", buf+i); + check(sscanf((char *) (buf + i), "%x", (unsigned int *)&c) == 1, "invalid hex input %s", buf+i); i = j; /* skip to char after hex input */ d += utf8proc_encode_char(c, (utf8proc_uint8_t *) (dest + d)); } } + +/* simplistic, portable replacement for getline, sufficient for our tests */ +size_t simple_getline(unsigned char buf[8192], FILE *f) { + size_t i = 0; + while (i < 8191) { + int c = getc(f); + if (c == EOF || c == '\n') break; + buf[i++] = (unsigned char) c; + } + buf[i] = 0; + return i; +} diff --git a/3rdparty/utf8proc/test/tests.h b/3rdparty/utf8proc/test/tests.h index 1811a734a5f..a30510100ed 100644 --- a/3rdparty/utf8proc/test/tests.h +++ b/3rdparty/utf8proc/test/tests.h @@ -1,13 +1,16 @@ /* Common functions and includes for our test programs. */ /* - * Set feature macro to enable getline() and wcwidth(). + * Set feature macro to enable wcwidth(). * * Please refer to section 2.2.1 of POSIX.1-2008: * http://pubs.opengroup.org/onlinepubs/9699919799/functions/V2_chap02.html#tag_15_02_01_02 */ #define _XOPEN_SOURCE 700 +/* silence warnings about sscanf on Windows */ +#define _CRT_SECURE_NO_WARNINGS + #include <stdio.h> #include <stdlib.h> #include <ctype.h> @@ -19,5 +22,6 @@ extern size_t lineno; void check(int cond, const char *format, ...); -size_t skipspaces(const char *buf, size_t i); -size_t encode(char *dest, const char *buf); +size_t skipspaces(const unsigned char *buf, size_t i); +size_t encode(unsigned char *dest, const unsigned char *buf); +size_t simple_getline(unsigned char buf[8192], FILE *f); diff --git a/3rdparty/utf8proc/utf8proc.c b/3rdparty/utf8proc/utf8proc.c index c14bbe13fc1..1af3456503f 100644 --- a/3rdparty/utf8proc/utf8proc.c +++ b/3rdparty/utf8proc/utf8proc.c @@ -1,6 +1,6 @@ /* -*- mode: c; c-basic-offset: 2; tab-width: 2; indent-tabs-mode: nil -*- */ /* - * Copyright (c) 2015 Steven G. Johnson, Jiahao Chen, Peter Colberg, Tony Kelman, Scott P. Jones, and other contributors. + * Copyright (c) 2014-2019 Steven G. Johnson, Jiahao Chen, Peter Colberg, Tony Kelman, Scott P. Jones, and other contributors. * Copyright (c) 2009 Public Software Group e. V., Berlin, Germany * * Permission is hereby granted, free of charge, to any person obtaining a @@ -27,7 +27,7 @@ * Unicode data files. * * The original data files are available at - * http://www.unicode.org/Public/UNIDATA/ + * https://www.unicode.org/Public/UNIDATA/ * * Please notice the copyright statement in the file "utf8proc_data.c". */ @@ -42,6 +42,14 @@ #include "utf8proc.h" + +#ifndef SSIZE_MAX +#define SSIZE_MAX ((size_t)SIZE_MAX/2) +#endif +#ifndef UINT16_MAX +# define UINT16_MAX 65535U +#endif + #include "utf8proc_data.c" @@ -92,6 +100,10 @@ UTF8PROC_DLLEXPORT const char *utf8proc_version(void) { return STRINGIZE(UTF8PROC_VERSION_MAJOR) "." STRINGIZE(UTF8PROC_VERSION_MINOR) "." STRINGIZE(UTF8PROC_VERSION_PATCH) ""; } +UTF8PROC_DLLEXPORT const char *utf8proc_unicode_version(void) { + return "13.0.0"; +} + UTF8PROC_DLLEXPORT const char *utf8proc_errmsg(utf8proc_ssize_t errcode) { switch (errcode) { case UTF8PROC_ERROR_NOMEM: @@ -188,9 +200,13 @@ UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_encode_char(utf8proc_int32_t uc, ut } else return 0; } -/* internal "unsafe" version that does not check whether uc is in range */ -static utf8proc_ssize_t unsafe_encode_char(utf8proc_int32_t uc, utf8proc_uint8_t *dst) { +/* internal version used for inserting 0xff bytes between graphemes */ +static utf8proc_ssize_t charbound_encode_char(utf8proc_int32_t uc, utf8proc_uint8_t *dst) { if (uc < 0x00) { + if (uc == -1) { /* internal value used for grapheme breaks */ + dst[0] = (utf8proc_uint8_t)0xFF; + return 1; + } return 0; } else if (uc < 0x80) { dst[0] = (utf8proc_uint8_t)uc; @@ -199,12 +215,6 @@ static utf8proc_ssize_t unsafe_encode_char(utf8proc_int32_t uc, utf8proc_uint8_t dst[0] = (utf8proc_uint8_t)(0xC0 + (uc >> 6)); dst[1] = (utf8proc_uint8_t)(0x80 + (uc & 0x3F)); return 2; - } else if (uc == 0xFFFF) { - dst[0] = (utf8proc_uint8_t)0xFF; - return 1; - } else if (uc == 0xFFFE) { - dst[0] = (utf8proc_uint8_t)0xFE; - return 1; } else if (uc < 0x10000) { dst[0] = (utf8proc_uint8_t)(0xE0 + (uc >> 12)); dst[1] = (utf8proc_uint8_t)(0x80 + ((uc >> 6) & 0x3F)); @@ -271,12 +281,8 @@ static utf8proc_bool grapheme_break_simple(int lbc, int tbc) { tbc == UTF8PROC_BOUNDCLASS_ZWJ || // --- tbc == UTF8PROC_BOUNDCLASS_SPACINGMARK || // GB9a lbc == UTF8PROC_BOUNDCLASS_PREPEND) ? false : // GB9b - ((lbc == UTF8PROC_BOUNDCLASS_E_BASE || // GB10 (requires additional handling below) - lbc == UTF8PROC_BOUNDCLASS_E_BASE_GAZ) && // ---- - tbc == UTF8PROC_BOUNDCLASS_E_MODIFIER) ? false : // ---- - (lbc == UTF8PROC_BOUNDCLASS_ZWJ && // GB11 - (tbc == UTF8PROC_BOUNDCLASS_GLUE_AFTER_ZWJ || // ---- - tbc == UTF8PROC_BOUNDCLASS_E_BASE_GAZ)) ? false : // ---- + (lbc == UTF8PROC_BOUNDCLASS_E_ZWG && // GB11 (requires additional handling below) + tbc == UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC) ? false : // ---- (lbc == UTF8PROC_BOUNDCLASS_REGIONAL_INDICATOR && // GB12/13 (requires additional handling below) tbc == UTF8PROC_BOUNDCLASS_REGIONAL_INDICATOR) ? false : // ---- true; // GB999 @@ -284,11 +290,14 @@ static utf8proc_bool grapheme_break_simple(int lbc, int tbc) { static utf8proc_bool grapheme_break_extended(int lbc, int tbc, utf8proc_int32_t *state) { - int lbc_override = lbc; - if (state && *state != UTF8PROC_BOUNDCLASS_START) - lbc_override = *state; - utf8proc_bool break_permitted = grapheme_break_simple(lbc_override, tbc); if (state) { + int lbc_override; + if (*state == UTF8PROC_BOUNDCLASS_START) + *state = lbc_override = lbc; + else + lbc_override = *state; + utf8proc_bool break_permitted = grapheme_break_simple(lbc_override, tbc); + // Special support for GB 12/13 made possible by GB999. After two RI // class codepoints we want to force a break. Do this by resetting the // second RI's bound class to UTF8PROC_BOUNDCLASS_OTHER, to force a break @@ -296,16 +305,22 @@ static utf8proc_bool grapheme_break_extended(int lbc, int tbc, utf8proc_int32_t // forbidden by a different rule such as GB9). if (*state == tbc && tbc == UTF8PROC_BOUNDCLASS_REGIONAL_INDICATOR) *state = UTF8PROC_BOUNDCLASS_OTHER; - // Special support for GB10. Fold any EXTEND codepoints into the previous - // boundclass if we're dealing with an emoji base boundclass. - else if ((*state == UTF8PROC_BOUNDCLASS_E_BASE || - *state == UTF8PROC_BOUNDCLASS_E_BASE_GAZ) && - tbc == UTF8PROC_BOUNDCLASS_EXTEND) - *state = UTF8PROC_BOUNDCLASS_E_BASE; + // Special support for GB11 (emoji extend* zwj / emoji) + else if (*state == UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC) { + if (tbc == UTF8PROC_BOUNDCLASS_EXTEND) // fold EXTEND codepoints into emoji + *state = UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC; + else if (tbc == UTF8PROC_BOUNDCLASS_ZWJ) + *state = UTF8PROC_BOUNDCLASS_E_ZWG; // state to record emoji+zwg combo + else + *state = tbc; + } else *state = tbc; + + return break_permitted; } - return break_permitted; + else + return grapheme_break_simple(lbc, tbc); } UTF8PROC_DLLEXPORT utf8proc_bool utf8proc_grapheme_break_stateful( @@ -376,6 +391,18 @@ UTF8PROC_DLLEXPORT utf8proc_int32_t utf8proc_totitle(utf8proc_int32_t c) return cu != UINT16_MAX ? seqindex_decode_index(cu) : c; } +UTF8PROC_DLLEXPORT int utf8proc_islower(utf8proc_int32_t c) +{ + const utf8proc_property_t *p = utf8proc_get_property(c); + return p->lowercase_seqindex != p->uppercase_seqindex && p->lowercase_seqindex == UINT16_MAX; +} + +UTF8PROC_DLLEXPORT int utf8proc_isupper(utf8proc_int32_t c) +{ + const utf8proc_property_t *p = utf8proc_get_property(c); + return p->lowercase_seqindex != p->uppercase_seqindex && p->uppercase_seqindex == UINT16_MAX && p->category != UTF8PROC_CATEGORY_LT; +} + /* return a character width analogous to wcwidth (except portable and hopefully less buggy than most system wcwidth functions). */ UTF8PROC_DLLEXPORT int utf8proc_charwidth(utf8proc_int32_t c) { @@ -424,6 +451,9 @@ UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_decompose_char(utf8proc_int32_t uc, if (options & UTF8PROC_IGNORE) { if (property->ignorable) return 0; } + if (options & UTF8PROC_STRIPNA) { + if (!category) return 0; + } if (options & UTF8PROC_LUMP) { if (category == UTF8PROC_CATEGORY_ZS) utf8proc_decompose_lump(0x0020); if (uc == 0x2018 || uc == 0x2019 || uc == 0x02BC || uc == 0x02C8) @@ -471,7 +501,7 @@ UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_decompose_char(utf8proc_int32_t uc, int tbc = property->boundclass; boundary = grapheme_break_extended(*last_boundclass, tbc, last_boundclass); if (boundary) { - if (bufsize >= 1) dst[0] = 0xFFFF; + if (bufsize >= 1) dst[0] = -1; /* sentinel value for grapheme break */ if (bufsize >= 2) dst[1] = uc; return 2; } @@ -632,9 +662,9 @@ UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_normalize_utf32(utf8proc_int32_t *b current_property->comb_index != UINT16_MAX && current_property->comb_index >= 0x8000) { int sidx = starter_property->comb_index; - int idx = (current_property->comb_index & 0x3FFF) - utf8proc_combinations[sidx]; - if (idx >= 0 && idx <= utf8proc_combinations[sidx + 1] ) { - idx += sidx + 2; + int idx = current_property->comb_index & 0x3FFF; + if (idx >= utf8proc_combinations[sidx] && idx <= utf8proc_combinations[sidx + 1] ) { + idx += sidx + 2 - utf8proc_combinations[sidx]; if (current_property->comb_index & 0x4000) { composition = (utf8proc_combinations[idx] << 16) | utf8proc_combinations[idx+1]; } else @@ -677,7 +707,7 @@ UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_reencode(utf8proc_int32_t *buffer, if (options & UTF8PROC_CHARBOUND) { for (rpos = 0; rpos < length; rpos++) { uc = buffer[rpos]; - wpos += unsafe_encode_char(uc, ((utf8proc_uint8_t *)buffer) + wpos); + wpos += charbound_encode_char(uc, ((utf8proc_uint8_t *)buffer) + wpos); } } else { for (rpos = 0; rpos < length; rpos++) { @@ -753,3 +783,10 @@ UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFKC(const utf8proc_uint8_t *str) UTF8PROC_COMPOSE | UTF8PROC_COMPAT); return retval; } + +UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFKC_Casefold(const utf8proc_uint8_t *str) { + utf8proc_uint8_t *retval; + utf8proc_map(str, 0, &retval, UTF8PROC_NULLTERM | UTF8PROC_STABLE | + UTF8PROC_COMPOSE | UTF8PROC_COMPAT | UTF8PROC_CASEFOLD | UTF8PROC_IGNORE); + return retval; +} diff --git a/3rdparty/utf8proc/utf8proc.h b/3rdparty/utf8proc/utf8proc.h index 371d39fd8b7..2e8a7ae74cb 100644 --- a/3rdparty/utf8proc/utf8proc.h +++ b/3rdparty/utf8proc/utf8proc.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Steven G. Johnson, Jiahao Chen, Peter Colberg, Tony Kelman, Scott P. Jones, and other contributors. + * Copyright (c) 2014-2019 Steven G. Johnson, Jiahao Chen, Peter Colberg, Tony Kelman, Scott P. Jones, and other contributors. * Copyright (c) 2009 Public Software Group e. V., Berlin, Germany * * Permission is hereby granted, free of charge, to any person obtaining a @@ -27,8 +27,8 @@ * * utf8proc is a free/open-source (MIT/expat licensed) C library * providing Unicode normalization, case-folding, and other operations - * for strings in the UTF-8 encoding, supporting Unicode version - * 8.0.0. See the utf8proc home page (http://julialang.org/utf8proc/) + * for strings in the UTF-8 encoding, supporting up-to-date Unicode versions. + * See the utf8proc home page (http://julialang.org/utf8proc/) * for downloads and other information, or the source code on github * (https://github.com/JuliaLang/utf8proc). * @@ -71,13 +71,13 @@ /** The MAJOR version number (increased when backwards API compatibility is broken). */ #define UTF8PROC_VERSION_MAJOR 2 /** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */ -#define UTF8PROC_VERSION_MINOR 1 +#define UTF8PROC_VERSION_MINOR 6 /** The PATCH version (increased for fixes that do not change the API). */ -#define UTF8PROC_VERSION_PATCH 0 +#define UTF8PROC_VERSION_PATCH 1 /** @} */ #include <stdlib.h> -#include <sys/types.h> + #if defined(_MSC_VER) && _MSC_VER < 1800 // MSVC prior to 2013 lacked stdbool.h and inttypes.h typedef signed char utf8proc_int8_t; @@ -120,23 +120,19 @@ typedef bool utf8proc_bool; #endif #include <limits.h> -#ifdef _WIN32 -# ifdef UTF8PROC_EXPORTS -# ifndef UTF8PROC_DLLEXPORT -# define UTF8PROC_DLLEXPORT __declspec(dllexport) +#ifdef UTF8PROC_STATIC +# define UTF8PROC_DLLEXPORT +#else +# ifdef _WIN32 +# ifdef UTF8PROC_EXPORTS +# define UTF8PROC_DLLEXPORT __declspec(dllexport) +# else +# define UTF8PROC_DLLEXPORT __declspec(dllimport) # endif +# elif __GNUC__ >= 4 +# define UTF8PROC_DLLEXPORT __attribute__ ((visibility("default"))) # else -# ifndef UTF8PROC_DLLEXPORT -# define UTF8PROC_DLLEXPORT __declspec(dllimport) -# endif -# endif -#elif __GNUC__ >= 4 -# ifndef UTF8PROC_DLLEXPORT -# define UTF8PROC_DLLEXPORT __attribute__ ((visibility("default"))) -# endif -#else -# ifndef UTF8PROC_DLLEXPORT -# define UTF8PROC_DLLEXPORT +# define UTF8PROC_DLLEXPORT # endif #endif @@ -144,14 +140,6 @@ typedef bool utf8proc_bool; extern "C" { #endif -#ifndef SSIZE_MAX -#define SSIZE_MAX ((size_t)SIZE_MAX/2) -#endif - -#ifndef UINT16_MAX -# define UINT16_MAX 65535U -#endif - /** * Option flags used by several functions in the library. */ @@ -217,6 +205,10 @@ typedef enum { * @ref UTF8PROC_DECOMPOSE */ UTF8PROC_STRIPMARK = (1<<13), + /** + * Strip unassigned codepoints. + */ + UTF8PROC_STRIPNA = (1<<14), } utf8proc_option_t; /** @name Error codes @@ -382,10 +374,18 @@ typedef enum { UTF8PROC_BOUNDCLASS_SPACINGMARK = 12, /**< Spacingmark */ UTF8PROC_BOUNDCLASS_PREPEND = 13, /**< Prepend */ UTF8PROC_BOUNDCLASS_ZWJ = 14, /**< Zero Width Joiner */ + + /* the following are no longer used in Unicode 11, but we keep + the constants here for backward compatibility */ UTF8PROC_BOUNDCLASS_E_BASE = 15, /**< Emoji Base */ UTF8PROC_BOUNDCLASS_E_MODIFIER = 16, /**< Emoji Modifier */ UTF8PROC_BOUNDCLASS_GLUE_AFTER_ZWJ = 17, /**< Glue_After_ZWJ */ UTF8PROC_BOUNDCLASS_E_BASE_GAZ = 18, /**< E_BASE + GLUE_AFTER_ZJW */ + + /* the Extended_Pictographic property is used in the Unicode 11 + grapheme-boundary rules, so we store it in the boundclass field */ + UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC = 19, + UTF8PROC_BOUNDCLASS_E_ZWG = 20, /* UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC + ZWJ */ } utf8proc_boundclass_t; /** @@ -409,6 +409,11 @@ UTF8PROC_DLLEXPORT extern const utf8proc_int8_t utf8proc_utf8class[256]; UTF8PROC_DLLEXPORT const char *utf8proc_version(void); /** + * Returns the utf8proc supported Unicode version as a string MAJOR.MINOR.PATCH. + */ +UTF8PROC_DLLEXPORT const char *utf8proc_unicode_version(void); + +/** * Returns an informative error string for the given utf8proc error code * (e.g. the error codes returned by @ref utf8proc_map). */ @@ -473,6 +478,7 @@ UTF8PROC_DLLEXPORT const utf8proc_property_t *utf8proc_get_property(utf8proc_int * - @ref UTF8PROC_CHARBOUND - insert 0xFF bytes before each grapheme cluster * - @ref UTF8PROC_LUMP - lump certain different codepoints together * - @ref UTF8PROC_STRIPMARK - remove all character marks + * - @ref UTF8PROC_STRIPNA - remove unassigned codepoints * @param last_boundclass * Pointer to an integer variable containing * the previous codepoint's boundary class if the @ref UTF8PROC_CHARBOUND @@ -496,7 +502,7 @@ UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_decompose_char( * string and orders the decomposed sequences correctly. * * If the @ref UTF8PROC_NULLTERM flag in `options` is set, processing - * will be stopped, when a NULL byte is encounted, otherwise `strlen` + * will be stopped, when a NULL byte is encountered, otherwise `strlen` * bytes are processed. The result (in the form of 32-bit unicode * codepoints) is written into the buffer being pointed to by * `buffer` (which must contain at least `bufsize` entries). In case of @@ -584,6 +590,8 @@ UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_reencode(utf8proc_int32_t *buffer, * Given a pair of consecutive codepoints, return whether a grapheme break is * permitted between them (as defined by the extended grapheme clusters in UAX#29). * + * @param codepoint1 The first codepoint. + * @param codepoint2 The second codepoint, occurring consecutively after `codepoint1`. * @param state Beginning with Version 29 (Unicode 9.0.0), this algorithm requires * state to break graphemes. This state can be passed in as a pointer * in the `state` argument and should initially be set to 0. If the @@ -592,7 +600,8 @@ UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_reencode(utf8proc_int32_t *buffer, * matching the rules in Unicode 8.0.0. * * @warning If the state parameter is used, `utf8proc_grapheme_break_stateful` must - * be called IN ORDER on ALL potential breaks in a string. + * be called IN ORDER on ALL potential breaks in a string. However, it + * is safe to reset the state to zero after a grapheme break. */ UTF8PROC_DLLEXPORT utf8proc_bool utf8proc_grapheme_break_stateful( utf8proc_int32_t codepoint1, utf8proc_int32_t codepoint2, utf8proc_int32_t *state); @@ -627,6 +636,18 @@ UTF8PROC_DLLEXPORT utf8proc_int32_t utf8proc_toupper(utf8proc_int32_t c); UTF8PROC_DLLEXPORT utf8proc_int32_t utf8proc_totitle(utf8proc_int32_t c); /** + * Given a codepoint `c`, return `1` if the codepoint corresponds to a lower-case character + * and `0` otherwise. + */ +UTF8PROC_DLLEXPORT int utf8proc_islower(utf8proc_int32_t c); + +/** + * Given a codepoint `c`, return `1` if the codepoint corresponds to an upper-case character + * and `0` otherwise. + */ +UTF8PROC_DLLEXPORT int utf8proc_isupper(utf8proc_int32_t c); + +/** * Given a codepoint, return a character width analogous to `wcwidth(codepoint)`, * except that a width of 0 is returned for non-printable codepoints * instead of -1 as in `wcwidth`. @@ -659,7 +680,7 @@ UTF8PROC_DLLEXPORT const char *utf8proc_category_string(utf8proc_int32_t codepoi * contain NULL characters with the string if `str` contained NULL * characters). Other flags in the `options` field are passed to the * functions defined above, and regarded as described. See also - * @ref utfproc_map_custom to supply a custom codepoint transformation. + * @ref utf8proc_map_custom to supply a custom codepoint transformation. * * In case of success the length of the new string is returned, * otherwise a negative error code is returned. @@ -684,8 +705,8 @@ UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_map_custom( /** @name Unicode normalization * - * Returns a pointer to newly allocated memory of a NFD, NFC, NFKD or NFKC - * normalized version of the null-terminated string `str`. These + * Returns a pointer to newly allocated memory of a NFD, NFC, NFKD, NFKC or + * NFKC_Casefold normalized version of the null-terminated string `str`. These * are shortcuts to calling @ref utf8proc_map with @ref UTF8PROC_NULLTERM * combined with @ref UTF8PROC_STABLE and flags indicating the normalization. */ @@ -698,6 +719,11 @@ UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFC(const utf8proc_uint8_t *str); UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFKD(const utf8proc_uint8_t *str); /** NFKC normalization (@ref UTF8PROC_COMPOSE and @ref UTF8PROC_COMPAT). */ UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFKC(const utf8proc_uint8_t *str); +/** + * NFKC_Casefold normalization (@ref UTF8PROC_COMPOSE and @ref UTF8PROC_COMPAT + * and @ref UTF8PROC_CASEFOLD and @ref UTF8PROC_IGNORE). + **/ +UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFKC_Casefold(const utf8proc_uint8_t *str); /** @} */ #ifdef __cplusplus diff --git a/3rdparty/utf8proc/utf8proc_data.c b/3rdparty/utf8proc/utf8proc_data.c index d8a56bbd872..06ece78e392 100644 --- a/3rdparty/utf8proc/utf8proc_data.c +++ b/3rdparty/utf8proc/utf8proc_data.c @@ -1,4 +1,4 @@ -const utf8proc_uint16_t utf8proc_sequences[] = { +static const utf8proc_uint16_t utf8proc_sequences[] = { 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, @@ -179,933 +179,1000 @@ const utf8proc_uint16_t utf8proc_sequences[] = { 11565, 4316, 5104, 5105, 5106, 5107, 5108, 5109, 6917, 6965, 6919, 6965, 6921, 6965, 6923, 6965, 6925, 6965, 6929, 6965, 6970, 6965, 6972, 6965, - 6974, 6965, 6975, 6965, 6978, 6965, 42571, 65, - 198, 66, 68, 69, 398, 71, 72, 73, - 74, 75, 76, 77, 78, 79, 546, 80, - 82, 84, 85, 87, 592, 593, 7426, 604, - 7446, 7447, 7453, 7461, 594, 597, 607, 609, - 613, 618, 7547, 669, 621, 7557, 671, 625, - 624, 627, 628, 632, 642, 427, 7452, 656, - 657, 65, 805, 7681, 97, 805, 66, 775, - 7683, 98, 775, 66, 803, 7685, 98, 803, - 66, 817, 7687, 98, 817, 199, 769, 7689, - 231, 769, 68, 775, 7691, 100, 775, 68, - 803, 7693, 100, 803, 68, 817, 7695, 100, - 817, 68, 807, 7697, 100, 807, 68, 813, - 7699, 100, 813, 274, 768, 7701, 275, 768, - 274, 769, 7703, 275, 769, 69, 813, 7705, - 101, 813, 69, 816, 7707, 101, 816, 552, - 774, 7709, 553, 774, 70, 775, 7711, 102, - 775, 71, 772, 7713, 103, 772, 72, 775, - 7715, 104, 775, 72, 803, 7717, 104, 803, - 72, 776, 7719, 104, 776, 72, 807, 7721, - 104, 807, 72, 814, 7723, 104, 814, 73, - 816, 7725, 105, 816, 207, 769, 7727, 239, - 769, 75, 769, 7729, 107, 769, 75, 803, - 7731, 107, 803, 75, 817, 7733, 107, 817, - 76, 803, 7735, 108, 803, 7734, 772, 7737, - 7735, 772, 76, 817, 7739, 108, 817, 76, - 813, 7741, 108, 813, 77, 769, 7743, 109, - 769, 77, 775, 7745, 109, 775, 77, 803, - 7747, 109, 803, 78, 775, 7749, 110, 775, - 78, 803, 7751, 110, 803, 78, 817, 7753, - 110, 817, 78, 813, 7755, 110, 813, 213, - 769, 7757, 245, 769, 213, 776, 7759, 245, - 776, 332, 768, 7761, 333, 768, 332, 769, - 7763, 333, 769, 80, 769, 7765, 112, 769, - 80, 775, 7767, 112, 775, 82, 775, 7769, - 114, 775, 82, 803, 7771, 114, 803, 7770, - 772, 7773, 7771, 772, 82, 817, 7775, 114, - 817, 83, 775, 7777, 115, 775, 83, 803, - 7779, 115, 803, 346, 775, 7781, 347, 775, - 352, 775, 7783, 353, 775, 7778, 775, 7785, - 7779, 775, 84, 775, 7787, 116, 775, 84, - 803, 7789, 116, 803, 84, 817, 7791, 116, - 817, 84, 813, 7793, 116, 813, 85, 804, - 7795, 117, 804, 85, 816, 7797, 117, 816, - 85, 813, 7799, 117, 813, 360, 769, 7801, - 361, 769, 362, 776, 7803, 363, 776, 86, - 771, 7805, 118, 771, 86, 803, 7807, 118, - 803, 87, 768, 7809, 119, 768, 87, 769, - 7811, 119, 769, 87, 776, 7813, 119, 776, - 87, 775, 7815, 119, 775, 87, 803, 7817, - 119, 803, 88, 775, 7819, 120, 775, 88, - 776, 7821, 120, 776, 89, 775, 7823, 121, - 775, 90, 770, 7825, 122, 770, 90, 803, - 7827, 122, 803, 90, 817, 7829, 122, 817, - 104, 817, 116, 776, 119, 778, 121, 778, - 97, 702, 383, 775, 223, 65, 803, 7841, - 97, 803, 65, 777, 7843, 97, 777, 194, - 769, 7845, 226, 769, 194, 768, 7847, 226, - 768, 194, 777, 7849, 226, 777, 194, 771, - 7851, 226, 771, 7840, 770, 7853, 7841, 770, - 258, 769, 7855, 259, 769, 258, 768, 7857, - 259, 768, 258, 777, 7859, 259, 777, 258, - 771, 7861, 259, 771, 7840, 774, 7863, 7841, - 774, 69, 803, 7865, 101, 803, 69, 777, - 7867, 101, 777, 69, 771, 7869, 101, 771, - 202, 769, 7871, 234, 769, 202, 768, 7873, - 234, 768, 202, 777, 7875, 234, 777, 202, - 771, 7877, 234, 771, 7864, 770, 7879, 7865, - 770, 73, 777, 7881, 105, 777, 73, 803, - 7883, 105, 803, 79, 803, 7885, 111, 803, - 79, 777, 7887, 111, 777, 212, 769, 7889, - 244, 769, 212, 768, 7891, 244, 768, 212, - 777, 7893, 244, 777, 212, 771, 7895, 244, - 771, 7884, 770, 7897, 7885, 770, 416, 769, - 7899, 417, 769, 416, 768, 7901, 417, 768, - 416, 777, 7903, 417, 777, 416, 771, 7905, - 417, 771, 416, 803, 7907, 417, 803, 85, - 803, 7909, 117, 803, 85, 777, 7911, 117, - 777, 431, 769, 7913, 432, 769, 431, 768, - 7915, 432, 768, 431, 777, 7917, 432, 777, - 431, 771, 7919, 432, 771, 431, 803, 7921, - 432, 803, 89, 768, 7923, 121, 768, 89, - 803, 7925, 121, 803, 89, 777, 7927, 121, - 777, 89, 771, 7929, 121, 771, 7931, 7933, - 7935, 945, 787, 945, 788, 7936, 768, 7937, - 768, 7936, 769, 7937, 769, 7936, 834, 7937, - 834, 913, 787, 7936, 913, 788, 7937, 7944, - 768, 7938, 7945, 768, 7939, 7944, 769, 7940, - 7945, 769, 7941, 7944, 834, 7942, 7945, 834, - 7943, 949, 787, 949, 788, 7952, 768, 7953, - 768, 7952, 769, 7953, 769, 917, 787, 7952, - 917, 788, 7953, 7960, 768, 7954, 7961, 768, - 7955, 7960, 769, 7956, 7961, 769, 7957, 951, - 787, 951, 788, 7968, 768, 7969, 768, 7968, - 769, 7969, 769, 7968, 834, 7969, 834, 919, - 787, 7968, 919, 788, 7969, 7976, 768, 7970, - 7977, 768, 7971, 7976, 769, 7972, 7977, 769, - 7973, 7976, 834, 7974, 7977, 834, 7975, 953, - 787, 953, 788, 7984, 768, 7985, 768, 7984, - 769, 7985, 769, 7984, 834, 7985, 834, 921, - 787, 7984, 921, 788, 7985, 7992, 768, 7986, - 7993, 768, 7987, 7992, 769, 7988, 7993, 769, - 7989, 7992, 834, 7990, 7993, 834, 7991, 959, - 787, 959, 788, 8000, 768, 8001, 768, 8000, - 769, 8001, 769, 927, 787, 8000, 927, 788, - 8001, 8008, 768, 8002, 8009, 768, 8003, 8008, - 769, 8004, 8009, 769, 8005, 965, 787, 965, - 788, 8016, 768, 965, 787, 768, 8017, 768, - 8016, 769, 965, 787, 769, 8017, 769, 8016, - 834, 965, 787, 834, 8017, 834, 933, 788, - 8017, 8025, 768, 8019, 8025, 769, 8021, 8025, - 834, 8023, 969, 787, 969, 788, 8032, 768, - 8033, 768, 8032, 769, 8033, 769, 8032, 834, - 8033, 834, 937, 787, 8032, 937, 788, 8033, - 8040, 768, 8034, 8041, 768, 8035, 8040, 769, - 8036, 8041, 769, 8037, 8040, 834, 8038, 8041, - 834, 8039, 945, 768, 949, 768, 951, 768, - 953, 768, 959, 768, 965, 768, 969, 768, - 7936, 837, 7936, 953, 7937, 837, 7937, 953, - 7938, 837, 7938, 953, 7939, 837, 7939, 953, - 7940, 837, 7940, 953, 7941, 837, 7941, 953, - 7942, 837, 7942, 953, 7943, 837, 7943, 953, - 7944, 837, 8064, 7945, 837, 8065, 7946, 837, - 8066, 7947, 837, 8067, 7948, 837, 8068, 7949, - 837, 8069, 7950, 837, 8070, 7951, 837, 8071, - 7968, 837, 7968, 953, 7969, 837, 7969, 953, - 7970, 837, 7970, 953, 7971, 837, 7971, 953, - 7972, 837, 7972, 953, 7973, 837, 7973, 953, - 7974, 837, 7974, 953, 7975, 837, 7975, 953, - 7976, 837, 8080, 7977, 837, 8081, 7978, 837, - 8082, 7979, 837, 8083, 7980, 837, 8084, 7981, - 837, 8085, 7982, 837, 8086, 7983, 837, 8087, - 8032, 837, 8032, 953, 8033, 837, 8033, 953, - 8034, 837, 8034, 953, 8035, 837, 8035, 953, - 8036, 837, 8036, 953, 8037, 837, 8037, 953, - 8038, 837, 8038, 953, 8039, 837, 8039, 953, - 8040, 837, 8096, 8041, 837, 8097, 8042, 837, - 8098, 8043, 837, 8099, 8044, 837, 8100, 8045, - 837, 8101, 8046, 837, 8102, 8047, 837, 8103, - 945, 774, 945, 772, 8048, 837, 8048, 953, - 945, 837, 945, 953, 940, 837, 940, 953, - 945, 834, 8118, 837, 945, 834, 953, 913, - 774, 8112, 913, 772, 8113, 913, 768, 8048, - 902, 8049, 913, 837, 8115, 32, 787, 32, - 834, 168, 834, 8052, 837, 8052, 953, 951, - 837, 951, 953, 942, 837, 942, 953, 951, - 834, 8134, 837, 951, 834, 953, 917, 768, - 8050, 904, 8051, 919, 768, 8052, 905, 8053, - 919, 837, 8131, 8127, 768, 8127, 769, 8127, - 834, 953, 774, 953, 772, 970, 768, 953, - 776, 768, 912, 953, 834, 970, 834, 953, - 776, 834, 921, 774, 8144, 921, 772, 8145, - 921, 768, 8054, 906, 8055, 8190, 768, 8190, - 769, 8190, 834, 965, 774, 965, 772, 971, - 768, 965, 776, 768, 944, 961, 787, 961, - 788, 965, 834, 971, 834, 965, 776, 834, - 933, 774, 8160, 933, 772, 8161, 933, 768, - 8058, 910, 8059, 929, 788, 8165, 168, 768, - 901, 96, 8060, 837, 8060, 953, 969, 837, - 969, 953, 974, 837, 974, 953, 969, 834, - 8182, 837, 969, 834, 953, 927, 768, 8056, - 908, 8057, 937, 768, 8060, 911, 8061, 937, - 837, 8179, 180, 32, 788, 8194, 8195, 8208, - 32, 819, 46, 46, 46, 46, 46, 46, - 8242, 8242, 8242, 8242, 8242, 8245, 8245, 8245, - 8245, 8245, 33, 33, 32, 773, 63, 63, - 63, 33, 33, 63, 8242, 8242, 8242, 8242, - 48, 52, 53, 54, 55, 56, 57, 43, - 8722, 61, 40, 41, 82, 115, 97, 47, - 99, 97, 47, 115, 67, 176, 67, 99, - 47, 111, 99, 47, 117, 400, 176, 70, - 78, 111, 81, 83, 77, 84, 69, 76, - 84, 77, 90, 937, 197, 70, 8526, 1488, - 1489, 1490, 1491, 70, 65, 88, 915, 928, - 8721, 49, 8260, 55, 49, 8260, 57, 49, - 8260, 49, 48, 49, 8260, 51, 50, 8260, - 51, 49, 8260, 53, 50, 8260, 53, 51, - 8260, 53, 52, 8260, 53, 49, 8260, 54, - 53, 8260, 54, 49, 8260, 56, 51, 8260, - 56, 53, 8260, 56, 55, 8260, 56, 49, - 8260, 8560, 73, 73, 8561, 73, 73, 73, - 8562, 73, 86, 8563, 86, 8564, 86, 73, - 8565, 86, 73, 73, 8566, 86, 73, 73, - 73, 8567, 73, 88, 8568, 88, 8569, 88, - 73, 8570, 88, 73, 73, 8571, 8572, 8573, - 8574, 8575, 105, 105, 105, 105, 105, 105, - 118, 118, 105, 118, 105, 105, 118, 105, - 105, 105, 105, 120, 120, 105, 120, 105, - 105, 8580, 48, 8260, 51, 8592, 824, 8594, - 824, 8596, 824, 8656, 824, 8660, 824, 8658, - 824, 8707, 824, 8712, 824, 8715, 824, 8739, - 824, 8741, 824, 8747, 8747, 8747, 8747, 8747, - 8750, 8750, 8750, 8750, 8750, 8764, 824, 8771, - 824, 8773, 824, 8776, 824, 61, 824, 8801, - 824, 8781, 824, 60, 824, 62, 824, 8804, - 824, 8805, 824, 8818, 824, 8819, 824, 8822, - 824, 8823, 824, 8826, 824, 8827, 824, 8834, - 824, 8835, 824, 8838, 824, 8839, 824, 8866, - 824, 8872, 824, 8873, 824, 8875, 824, 8828, - 824, 8829, 824, 8849, 824, 8850, 824, 8882, - 824, 8883, 824, 8884, 824, 8885, 824, 12296, - 12297, 49, 48, 49, 49, 49, 50, 49, - 51, 49, 52, 49, 53, 49, 54, 49, - 55, 49, 56, 49, 57, 50, 48, 40, - 49, 41, 40, 50, 41, 40, 51, 41, - 40, 52, 41, 40, 53, 41, 40, 54, - 41, 40, 55, 41, 40, 56, 41, 40, - 57, 41, 40, 49, 48, 41, 40, 49, - 49, 41, 40, 49, 50, 41, 40, 49, - 51, 41, 40, 49, 52, 41, 40, 49, - 53, 41, 40, 49, 54, 41, 40, 49, - 55, 41, 40, 49, 56, 41, 40, 49, - 57, 41, 40, 50, 48, 41, 49, 46, - 50, 46, 51, 46, 52, 46, 53, 46, - 54, 46, 55, 46, 56, 46, 57, 46, - 49, 48, 46, 49, 49, 46, 49, 50, - 46, 49, 51, 46, 49, 52, 46, 49, - 53, 46, 49, 54, 46, 49, 55, 46, - 49, 56, 46, 49, 57, 46, 50, 48, - 46, 40, 97, 41, 40, 98, 41, 40, - 99, 41, 40, 100, 41, 40, 101, 41, - 40, 102, 41, 40, 103, 41, 40, 104, - 41, 40, 105, 41, 40, 106, 41, 40, - 107, 41, 40, 108, 41, 40, 109, 41, - 40, 110, 41, 40, 111, 41, 40, 112, - 41, 40, 113, 41, 40, 114, 41, 40, - 115, 41, 40, 116, 41, 40, 117, 41, - 40, 118, 41, 40, 119, 41, 40, 120, - 41, 40, 121, 41, 40, 122, 41, 9424, - 9425, 9426, 9427, 9428, 9429, 9430, 9431, 9432, - 9433, 9434, 9435, 9436, 9437, 9438, 9439, 9440, - 9441, 83, 9442, 9443, 9444, 9445, 9446, 9447, - 89, 9448, 9449, 8747, 8747, 8747, 8747, 58, - 58, 61, 61, 61, 61, 61, 61, 10973, - 824, 11312, 11313, 11314, 11315, 11316, 11317, 11318, - 11319, 11320, 11321, 11322, 11323, 11324, 11325, 11326, - 11327, 11328, 11329, 11330, 11331, 11332, 11333, 11334, - 11335, 11336, 11337, 11338, 11339, 11340, 11341, 11342, - 11343, 11344, 11345, 11346, 11347, 11348, 11349, 11350, - 11351, 11352, 11353, 11354, 11355, 11356, 11357, 11358, - 11361, 619, 7549, 637, 11368, 11370, 11372, 11379, - 11382, 575, 576, 11393, 11395, 11397, 11399, 11401, - 11403, 11405, 11407, 11409, 11411, 11413, 11415, 11417, - 11419, 11421, 11423, 11425, 11427, 11429, 11431, 11433, - 11435, 11437, 11439, 11441, 11443, 11445, 11447, 11449, - 11451, 11453, 11455, 11457, 11459, 11461, 11463, 11465, - 11467, 11469, 11471, 11473, 11475, 11477, 11479, 11481, - 11483, 11485, 11487, 11489, 11491, 11500, 11502, 11507, - 11617, 27597, 40863, 19968, 20008, 20022, 20031, 20057, - 20101, 20108, 20128, 20154, 20799, 20837, 20843, 20866, - 20886, 20907, 20960, 20981, 20992, 21147, 21241, 21269, - 21274, 21304, 21313, 21340, 21353, 21378, 21430, 21448, - 21475, 22231, 22303, 22763, 22786, 22794, 22805, 22823, - 22899, 23376, 23424, 23544, 23567, 23586, 23608, 23662, - 23665, 24027, 24037, 24049, 24062, 24178, 24186, 24191, - 24308, 24318, 24331, 24339, 24400, 24417, 24435, 24515, - 25096, 25142, 25163, 25903, 25908, 25991, 26007, 26020, - 26041, 26080, 26085, 26352, 26376, 26408, 27424, 27490, - 27513, 27571, 27595, 27604, 27611, 27663, 27668, 27700, - 28779, 29226, 29238, 29243, 29247, 29255, 29273, 29275, - 29356, 29572, 29577, 29916, 29926, 29976, 29983, 29992, - 30000, 30091, 30098, 30326, 30333, 30382, 30399, 30446, - 30683, 30690, 30707, 31034, 31160, 31166, 31348, 31435, - 31481, 31859, 31992, 32566, 32593, 32650, 32701, 32769, - 32780, 32786, 32819, 32895, 32905, 33251, 33258, 33267, - 33276, 33292, 33307, 33311, 33390, 33394, 33400, 34381, - 34411, 34880, 34892, 34915, 35198, 35211, 35282, 35328, - 35895, 35910, 35925, 35960, 35997, 36196, 36208, 36275, - 36523, 36554, 36763, 36784, 36789, 37009, 37193, 37318, - 37324, 37329, 38263, 38272, 38428, 38582, 38585, 38632, - 38737, 38750, 38754, 38761, 38859, 38893, 38899, 38913, - 39080, 39131, 39135, 39318, 39321, 39340, 39592, 39640, - 39647, 39717, 39727, 39730, 39740, 39770, 40165, 40565, - 40575, 40613, 40635, 40643, 40653, 40657, 40697, 40701, - 40718, 40723, 40736, 40763, 40778, 40786, 40845, 40860, - 40864, 12306, 21316, 21317, 12363, 12441, 12365, 12441, - 12367, 12441, 12369, 12441, 12371, 12441, 12373, 12441, - 12375, 12441, 12377, 12441, 12379, 12441, 12381, 12441, - 12383, 12441, 12385, 12441, 12388, 12441, 12390, 12441, - 12392, 12441, 12399, 12441, 12399, 12442, 12402, 12441, - 12402, 12442, 12405, 12441, 12405, 12442, 12408, 12441, - 12408, 12442, 12411, 12441, 12411, 12442, 12358, 12441, - 32, 12441, 32, 12442, 12445, 12441, 12424, 12426, - 12459, 12441, 12461, 12441, 12463, 12441, 12465, 12441, - 12467, 12441, 12469, 12441, 12471, 12441, 12473, 12441, - 12475, 12441, 12477, 12441, 12479, 12441, 12481, 12441, - 12484, 12441, 12486, 12441, 12488, 12441, 12495, 12441, - 12495, 12442, 12498, 12441, 12498, 12442, 12501, 12441, - 12501, 12442, 12504, 12441, 12504, 12442, 12507, 12441, - 12507, 12442, 12454, 12441, 12527, 12441, 12528, 12441, - 12529, 12441, 12530, 12441, 12541, 12441, 12467, 12488, - 4352, 4353, 4522, 4354, 4524, 4525, 4355, 4356, - 4357, 4528, 4529, 4530, 4531, 4532, 4533, 4378, - 4358, 4359, 4360, 4385, 4361, 4362, 4363, 4364, - 4365, 4366, 4367, 4368, 4369, 4370, 4449, 4450, - 4451, 4452, 4453, 4454, 4455, 4456, 4457, 4458, - 4459, 4460, 4461, 4462, 4463, 4464, 4465, 4466, - 4467, 4468, 4469, 4448, 4372, 4373, 4551, 4552, - 4556, 4558, 4563, 4567, 4569, 4380, 4573, 4575, - 4381, 4382, 4384, 4386, 4387, 4391, 4393, 4395, - 4396, 4397, 4398, 4399, 4402, 4406, 4416, 4423, - 4428, 4593, 4594, 4439, 4440, 4441, 4484, 4485, - 4488, 4497, 4498, 4500, 4510, 4513, 19977, 22235, - 19978, 20013, 19979, 30002, 19993, 19969, 22825, 22320, - 40, 4352, 41, 40, 4354, 41, 40, 4355, - 41, 40, 4357, 41, 40, 4358, 41, 40, - 4359, 41, 40, 4361, 41, 40, 4363, 41, - 40, 4364, 41, 40, 4366, 41, 40, 4367, - 41, 40, 4368, 41, 40, 4369, 41, 40, - 4370, 41, 40, 4352, 4449, 41, 40, 4354, - 4449, 41, 40, 4355, 4449, 41, 40, 4357, - 4449, 41, 40, 4358, 4449, 41, 40, 4359, - 4449, 41, 40, 4361, 4449, 41, 40, 4363, - 4449, 41, 40, 4364, 4449, 41, 40, 4366, - 4449, 41, 40, 4367, 4449, 41, 40, 4368, - 4449, 41, 40, 4369, 4449, 41, 40, 4370, - 4449, 41, 40, 4364, 4462, 41, 40, 4363, - 4457, 4364, 4453, 4523, 41, 40, 4363, 4457, - 4370, 4462, 41, 40, 19968, 41, 40, 20108, - 41, 40, 19977, 41, 40, 22235, 41, 40, - 20116, 41, 40, 20845, 41, 40, 19971, 41, - 40, 20843, 41, 40, 20061, 41, 40, 21313, - 41, 40, 26376, 41, 40, 28779, 41, 40, - 27700, 41, 40, 26408, 41, 40, 37329, 41, - 40, 22303, 41, 40, 26085, 41, 40, 26666, - 41, 40, 26377, 41, 40, 31038, 41, 40, - 21517, 41, 40, 29305, 41, 40, 36001, 41, - 40, 31069, 41, 40, 21172, 41, 40, 20195, - 41, 40, 21628, 41, 40, 23398, 41, 40, - 30435, 41, 40, 20225, 41, 40, 36039, 41, - 40, 21332, 41, 40, 31085, 41, 40, 20241, - 41, 40, 33258, 41, 40, 33267, 41, 21839, - 24188, 31631, 80, 84, 69, 50, 49, 50, - 50, 50, 51, 50, 52, 50, 53, 50, - 54, 50, 55, 50, 56, 50, 57, 51, - 48, 51, 49, 51, 50, 51, 51, 51, - 52, 51, 53, 4352, 4449, 4354, 4449, 4355, - 4449, 4357, 4449, 4358, 4449, 4359, 4449, 4361, - 4449, 4363, 4449, 4364, 4449, 4366, 4449, 4367, - 4449, 4368, 4449, 4369, 4449, 4370, 4449, 4366, - 4449, 4535, 4352, 4457, 4364, 4462, 4363, 4468, - 4363, 4462, 20116, 20845, 19971, 20061, 26666, 26377, - 31038, 21517, 29305, 36001, 31069, 21172, 31192, 30007, - 36969, 20778, 21360, 27880, 38917, 20241, 20889, 27491, - 24038, 21491, 21307, 23447, 23398, 30435, 20225, 36039, - 21332, 22812, 51, 54, 51, 55, 51, 56, - 51, 57, 52, 48, 52, 49, 52, 50, - 52, 51, 52, 52, 52, 53, 52, 54, - 52, 55, 52, 56, 52, 57, 53, 48, - 49, 26376, 50, 26376, 51, 26376, 52, 26376, - 53, 26376, 54, 26376, 55, 26376, 56, 26376, - 57, 26376, 49, 48, 26376, 49, 49, 26376, - 49, 50, 26376, 72, 103, 101, 114, 103, - 101, 86, 76, 84, 68, 12450, 12452, 12454, - 12456, 12458, 12459, 12461, 12463, 12465, 12467, 12469, - 12471, 12473, 12475, 12477, 12479, 12481, 12484, 12486, - 12488, 12490, 12491, 12492, 12493, 12494, 12495, 12498, - 12501, 12504, 12507, 12510, 12511, 12512, 12513, 12514, - 12516, 12518, 12520, 12521, 12522, 12523, 12524, 12525, - 12527, 12528, 12529, 12530, 12450, 12497, 12540, 12488, - 12450, 12523, 12501, 12449, 12450, 12531, 12506, 12450, - 12450, 12540, 12523, 12452, 12491, 12531, 12464, 12452, - 12531, 12481, 12454, 12457, 12531, 12456, 12473, 12463, - 12540, 12489, 12456, 12540, 12459, 12540, 12458, 12531, - 12473, 12458, 12540, 12512, 12459, 12452, 12522, 12459, - 12521, 12483, 12488, 12459, 12525, 12522, 12540, 12460, - 12525, 12531, 12460, 12531, 12510, 12462, 12460, 12462, - 12491, 12540, 12461, 12517, 12522, 12540, 12462, 12523, - 12480, 12540, 12461, 12525, 12461, 12525, 12464, 12521, - 12512, 12461, 12525, 12513, 12540, 12488, 12523, 12461, - 12525, 12527, 12483, 12488, 12464, 12521, 12512, 12464, - 12521, 12512, 12488, 12531, 12463, 12523, 12476, 12452, - 12525, 12463, 12525, 12540, 12493, 12465, 12540, 12473, - 12467, 12523, 12490, 12467, 12540, 12509, 12469, 12452, - 12463, 12523, 12469, 12531, 12481, 12540, 12512, 12471, - 12522, 12531, 12464, 12475, 12531, 12481, 12475, 12531, - 12488, 12480, 12540, 12473, 12487, 12471, 12489, 12523, - 12488, 12531, 12490, 12494, 12494, 12483, 12488, 12495, - 12452, 12484, 12497, 12540, 12475, 12531, 12488, 12497, - 12540, 12484, 12496, 12540, 12524, 12523, 12500, 12450, - 12473, 12488, 12523, 12500, 12463, 12523, 12500, 12467, - 12499, 12523, 12501, 12449, 12521, 12483, 12489, 12501, - 12451, 12540, 12488, 12502, 12483, 12471, 12455, 12523, - 12501, 12521, 12531, 12504, 12463, 12479, 12540, 12523, - 12506, 12477, 12506, 12491, 12498, 12504, 12523, 12484, - 12506, 12531, 12473, 12506, 12540, 12472, 12505, 12540, - 12479, 12509, 12452, 12531, 12488, 12508, 12523, 12488, - 12507, 12531, 12509, 12531, 12489, 12507, 12540, 12523, - 12507, 12540, 12531, 12510, 12452, 12463, 12525, 12510, - 12452, 12523, 12510, 12483, 12495, 12510, 12523, 12463, - 12510, 12531, 12471, 12519, 12531, 12511, 12463, 12525, - 12531, 12511, 12522, 12511, 12522, 12496, 12540, 12523, - 12513, 12460, 12513, 12460, 12488, 12531, 12513, 12540, - 12488, 12523, 12516, 12540, 12489, 12516, 12540, 12523, - 12518, 12450, 12531, 12522, 12483, 12488, 12523, 12522, - 12521, 12523, 12500, 12540, 12523, 12540, 12502, 12523, - 12524, 12512, 12524, 12531, 12488, 12466, 12531, 12527, - 12483, 12488, 48, 28857, 49, 28857, 50, 28857, - 51, 28857, 52, 28857, 53, 28857, 54, 28857, - 55, 28857, 56, 28857, 57, 28857, 49, 48, - 28857, 49, 49, 28857, 49, 50, 28857, 49, - 51, 28857, 49, 52, 28857, 49, 53, 28857, - 49, 54, 28857, 49, 55, 28857, 49, 56, - 28857, 49, 57, 28857, 50, 48, 28857, 50, - 49, 28857, 50, 50, 28857, 50, 51, 28857, - 50, 52, 28857, 104, 80, 97, 100, 97, - 65, 85, 98, 97, 114, 111, 86, 112, - 99, 100, 109, 100, 109, 178, 100, 109, - 179, 73, 85, 24179, 25104, 26157, 21644, 22823, - 27491, 26126, 27835, 26666, 24335, 20250, 31038, 112, - 65, 110, 65, 956, 65, 109, 65, 107, - 65, 75, 66, 77, 66, 71, 66, 99, - 97, 108, 107, 99, 97, 108, 112, 70, - 110, 70, 956, 70, 956, 103, 109, 103, - 107, 103, 72, 122, 107, 72, 122, 77, - 72, 122, 71, 72, 122, 84, 72, 122, - 956, 8467, 109, 8467, 100, 8467, 107, 8467, - 102, 109, 110, 109, 956, 109, 109, 109, - 99, 109, 107, 109, 109, 109, 178, 99, - 109, 178, 109, 178, 107, 109, 178, 109, - 109, 179, 99, 109, 179, 109, 179, 107, - 109, 179, 109, 8725, 115, 109, 8725, 115, - 178, 80, 97, 107, 80, 97, 77, 80, - 97, 71, 80, 97, 114, 97, 100, 114, - 97, 100, 8725, 115, 114, 97, 100, 8725, - 115, 178, 112, 115, 110, 115, 956, 115, - 109, 115, 112, 86, 110, 86, 956, 86, - 109, 86, 107, 86, 77, 86, 112, 87, - 110, 87, 956, 87, 109, 87, 107, 87, - 77, 87, 107, 937, 77, 937, 97, 46, - 109, 46, 66, 113, 99, 99, 99, 100, - 67, 8725, 107, 103, 67, 111, 46, 100, - 66, 71, 121, 104, 97, 72, 80, 105, - 110, 75, 75, 75, 77, 107, 116, 108, - 109, 108, 110, 108, 111, 103, 108, 120, - 109, 98, 109, 105, 108, 109, 111, 108, - 80, 72, 112, 46, 109, 46, 80, 80, - 77, 80, 82, 115, 114, 83, 118, 87, - 98, 86, 8725, 109, 65, 8725, 109, 49, - 26085, 50, 26085, 51, 26085, 52, 26085, 53, - 26085, 54, 26085, 55, 26085, 56, 26085, 57, - 26085, 49, 48, 26085, 49, 49, 26085, 49, - 50, 26085, 49, 51, 26085, 49, 52, 26085, - 49, 53, 26085, 49, 54, 26085, 49, 55, - 26085, 49, 56, 26085, 49, 57, 26085, 50, - 48, 26085, 50, 49, 26085, 50, 50, 26085, - 50, 51, 26085, 50, 52, 26085, 50, 53, - 26085, 50, 54, 26085, 50, 55, 26085, 50, - 56, 26085, 50, 57, 26085, 51, 48, 26085, - 51, 49, 26085, 103, 97, 108, 42561, 42563, - 42565, 42567, 42569, 42573, 42575, 42577, 42579, 42581, - 42583, 42585, 42587, 42589, 42591, 42593, 42595, 42597, - 42599, 42601, 42603, 42605, 42625, 42627, 42629, 42631, - 42633, 42635, 42637, 42639, 42641, 42643, 42645, 42647, - 42649, 42651, 42787, 42789, 42791, 42793, 42795, 42797, - 42799, 42803, 42805, 42807, 42809, 42811, 42813, 42815, - 42817, 42819, 42821, 42823, 42825, 42827, 42829, 42831, - 42833, 42835, 42837, 42839, 42841, 42843, 42845, 42847, - 42849, 42851, 42853, 42855, 42857, 42859, 42861, 42863, - 42874, 42876, 7545, 42879, 42881, 42883, 42885, 42887, - 42892, 42897, 42899, 42903, 42905, 42907, 42909, 42911, - 42913, 42915, 42917, 42919, 42921, 620, 670, 647, - 43859, 42933, 42935, 294, 43831, 43858, 5024, 5025, - 5026, 5027, 5028, 5029, 5030, 5031, 5032, 5033, - 5034, 5035, 5036, 5037, 5038, 5039, 5040, 5041, - 5042, 5043, 5044, 5045, 5046, 5047, 5048, 5049, - 5050, 5051, 5052, 5053, 5054, 5055, 5056, 5057, - 5058, 5059, 5060, 5061, 5062, 5063, 5064, 5065, - 5066, 5067, 5068, 5069, 5070, 5071, 5072, 5073, - 5074, 5075, 5076, 5077, 5078, 5079, 5080, 5081, - 5082, 5083, 5084, 5085, 5086, 5087, 5088, 5089, - 5090, 5091, 5092, 5093, 5094, 5095, 5096, 5097, - 5098, 5099, 5100, 5101, 5102, 5103, 35912, 26356, - 36040, 28369, 20018, 21477, 22865, 21895, 22856, 25078, - 30313, 32645, 34367, 34746, 35064, 37007, 27138, 27931, - 28889, 29662, 33853, 37226, 39409, 20098, 21365, 27396, - 29211, 34349, 40478, 23888, 28651, 34253, 35172, 25289, - 33240, 34847, 24266, 26391, 28010, 29436, 37070, 20358, - 20919, 21214, 25796, 27347, 29200, 30439, 34310, 34396, - 36335, 38706, 39791, 40442, 30860, 31103, 32160, 33737, - 37636, 35542, 22751, 24324, 31840, 32894, 29282, 30922, - 36034, 38647, 22744, 23650, 27155, 28122, 28431, 32047, - 32311, 38475, 21202, 32907, 20956, 20940, 31260, 32190, - 33777, 38517, 35712, 25295, 35582, 20025, 23527, 24594, - 29575, 30064, 21271, 30971, 20415, 24489, 19981, 27852, - 25976, 32034, 21443, 22622, 30465, 33865, 35498, 27578, - 27784, 25342, 33509, 25504, 30053, 20142, 20841, 20937, - 26753, 31975, 33391, 35538, 37327, 21237, 21570, 24300, - 26053, 28670, 31018, 38317, 39530, 40599, 40654, 26310, - 27511, 36706, 24180, 24976, 25088, 25754, 28451, 29001, - 29833, 31178, 32244, 32879, 36646, 34030, 36899, 37706, - 21015, 21155, 21693, 28872, 35010, 24265, 24565, 25467, - 27566, 31806, 29557, 20196, 22265, 23994, 24604, 29618, - 29801, 32666, 32838, 37428, 38646, 38728, 38936, 20363, - 31150, 37300, 38584, 24801, 20102, 20698, 23534, 23615, - 26009, 29134, 30274, 34044, 36988, 26248, 38446, 21129, - 26491, 26611, 27969, 28316, 29705, 30041, 30827, 32016, - 39006, 25134, 38520, 20523, 23833, 28138, 36650, 24459, - 24900, 26647, 38534, 21033, 21519, 23653, 26131, 26446, - 26792, 27877, 29702, 30178, 32633, 35023, 35041, 38626, - 21311, 28346, 21533, 29136, 29848, 34298, 38563, 40023, - 40607, 26519, 28107, 33256, 31520, 31890, 29376, 28825, - 35672, 20160, 33590, 21050, 20999, 24230, 25299, 31958, - 23429, 27934, 26292, 36667, 38477, 24275, 20800, 21952, - 22618, 26228, 20958, 29482, 30410, 31036, 31070, 31077, - 31119, 38742, 31934, 34322, 35576, 36920, 37117, 39151, - 39164, 39208, 40372, 37086, 38583, 20398, 20711, 20813, - 21193, 21220, 21329, 21917, 22022, 22120, 22592, 22696, - 23652, 24724, 24936, 24974, 25074, 25935, 26082, 26257, - 26757, 28023, 28186, 28450, 29038, 29227, 29730, 30865, - 31049, 31048, 31056, 31062, 31117, 31118, 31296, 31361, - 31680, 32265, 32321, 32626, 32773, 33261, 33401, 33879, - 35088, 35222, 35585, 35641, 36051, 36104, 36790, 38627, - 38911, 38971, 24693, 55376, 57070, 33304, 20006, 20917, - 20840, 20352, 20805, 20864, 21191, 21242, 21845, 21913, - 21986, 22707, 22852, 22868, 23138, 23336, 24274, 24281, - 24425, 24493, 24792, 24910, 24840, 24928, 25140, 25540, - 25628, 25682, 25942, 26395, 26454, 28379, 28363, 28702, - 30631, 29237, 29359, 29809, 29958, 30011, 30237, 30239, - 30427, 30452, 30538, 30528, 30924, 31409, 31867, 32091, - 32574, 33618, 33775, 34681, 35137, 35206, 35519, 35531, - 35565, 35722, 36664, 36978, 37273, 37494, 38524, 38875, - 38923, 39698, 55370, 56394, 55370, 56388, 55372, 57301, - 15261, 16408, 16441, 55380, 56905, 55383, 56528, 55391, - 57043, 40771, 40846, 102, 102, 102, 105, 102, - 108, 102, 102, 105, 102, 102, 108, 383, - 116, 115, 116, 1396, 1398, 1396, 1381, 1396, - 1387, 1406, 1398, 1396, 1389, 1497, 1460, 1522, - 1463, 1506, 1492, 1499, 1500, 1501, 1512, 1514, - 1513, 1473, 1513, 1474, 64329, 1473, 64329, 1474, - 1488, 1463, 1488, 1464, 1488, 1468, 1489, 1468, - 1490, 1468, 1491, 1468, 1492, 1468, 1493, 1468, - 1494, 1468, 1496, 1468, 1497, 1468, 1498, 1468, - 1499, 1468, 1500, 1468, 1502, 1468, 1504, 1468, - 1505, 1468, 1507, 1468, 1508, 1468, 1510, 1468, - 1511, 1468, 1512, 1468, 1513, 1468, 1514, 1468, - 1493, 1465, 1489, 1471, 1499, 1471, 1508, 1471, - 1488, 1500, 1649, 1659, 1662, 1664, 1658, 1663, - 1657, 1700, 1702, 1668, 1667, 1670, 1671, 1677, - 1676, 1678, 1672, 1688, 1681, 1705, 1711, 1715, - 1713, 1722, 1723, 1728, 1729, 1726, 1746, 1747, - 1709, 1735, 1734, 1736, 1655, 1739, 1733, 1737, - 1744, 1609, 1574, 1575, 1574, 1749, 1574, 1608, - 1574, 1735, 1574, 1734, 1574, 1736, 1574, 1744, - 1574, 1609, 1740, 1574, 1580, 1574, 1581, 1574, - 1605, 1574, 1610, 1576, 1580, 1576, 1581, 1576, - 1582, 1576, 1605, 1576, 1609, 1576, 1610, 1578, - 1580, 1578, 1581, 1578, 1582, 1578, 1605, 1578, - 1609, 1578, 1610, 1579, 1580, 1579, 1605, 1579, - 1609, 1579, 1610, 1580, 1581, 1580, 1605, 1581, - 1580, 1581, 1605, 1582, 1580, 1582, 1581, 1582, - 1605, 1587, 1580, 1587, 1581, 1587, 1582, 1587, - 1605, 1589, 1581, 1589, 1605, 1590, 1580, 1590, - 1581, 1590, 1582, 1590, 1605, 1591, 1581, 1591, - 1605, 1592, 1605, 1593, 1580, 1593, 1605, 1594, - 1580, 1594, 1605, 1601, 1580, 1601, 1581, 1601, - 1582, 1601, 1605, 1601, 1609, 1601, 1610, 1602, - 1581, 1602, 1605, 1602, 1609, 1602, 1610, 1603, - 1575, 1603, 1580, 1603, 1581, 1603, 1582, 1603, - 1604, 1603, 1605, 1603, 1609, 1603, 1610, 1604, - 1580, 1604, 1581, 1604, 1582, 1604, 1605, 1604, - 1609, 1604, 1610, 1605, 1580, 1605, 1581, 1605, - 1582, 1605, 1605, 1605, 1609, 1605, 1610, 1606, - 1580, 1606, 1581, 1606, 1582, 1606, 1605, 1606, - 1609, 1606, 1610, 1607, 1580, 1607, 1605, 1607, - 1609, 1607, 1610, 1610, 1580, 1610, 1581, 1610, - 1582, 1610, 1605, 1610, 1609, 1610, 1610, 1584, - 1648, 1585, 1648, 1609, 1648, 32, 1612, 1617, - 32, 1613, 1617, 32, 1614, 1617, 32, 1615, - 1617, 32, 1616, 1617, 32, 1617, 1648, 1574, - 1585, 1574, 1586, 1574, 1606, 1576, 1585, 1576, - 1586, 1576, 1606, 1578, 1585, 1578, 1586, 1578, - 1606, 1579, 1585, 1579, 1586, 1579, 1606, 1605, - 1575, 1606, 1585, 1606, 1586, 1606, 1606, 1610, - 1585, 1610, 1586, 1610, 1606, 1574, 1582, 1574, - 1607, 1576, 1607, 1578, 1607, 1589, 1582, 1604, - 1607, 1606, 1607, 1607, 1648, 1610, 1607, 1579, - 1607, 1587, 1607, 1588, 1605, 1588, 1607, 1600, - 1614, 1617, 1600, 1615, 1617, 1600, 1616, 1617, - 1591, 1609, 1591, 1610, 1593, 1609, 1593, 1610, - 1594, 1609, 1594, 1610, 1587, 1609, 1587, 1610, - 1588, 1609, 1588, 1610, 1581, 1609, 1581, 1610, - 1580, 1609, 1580, 1610, 1582, 1609, 1582, 1610, - 1589, 1609, 1589, 1610, 1590, 1609, 1590, 1610, - 1588, 1580, 1588, 1581, 1588, 1582, 1588, 1585, - 1587, 1585, 1589, 1585, 1590, 1585, 1575, 1611, - 1578, 1580, 1605, 1578, 1581, 1580, 1578, 1581, - 1605, 1578, 1582, 1605, 1578, 1605, 1580, 1578, - 1605, 1581, 1578, 1605, 1582, 1580, 1605, 1581, - 1581, 1605, 1610, 1581, 1605, 1609, 1587, 1581, - 1580, 1587, 1580, 1581, 1587, 1580, 1609, 1587, - 1605, 1581, 1587, 1605, 1580, 1587, 1605, 1605, - 1589, 1581, 1581, 1589, 1605, 1605, 1588, 1581, - 1605, 1588, 1580, 1610, 1588, 1605, 1582, 1588, - 1605, 1605, 1590, 1581, 1609, 1590, 1582, 1605, - 1591, 1605, 1581, 1591, 1605, 1605, 1591, 1605, - 1610, 1593, 1580, 1605, 1593, 1605, 1605, 1593, - 1605, 1609, 1594, 1605, 1605, 1594, 1605, 1610, - 1594, 1605, 1609, 1601, 1582, 1605, 1602, 1605, - 1581, 1602, 1605, 1605, 1604, 1581, 1605, 1604, - 1581, 1610, 1604, 1581, 1609, 1604, 1580, 1580, - 1604, 1582, 1605, 1604, 1605, 1581, 1605, 1581, - 1580, 1605, 1581, 1605, 1605, 1581, 1610, 1605, - 1580, 1581, 1605, 1580, 1605, 1605, 1582, 1580, - 1605, 1582, 1605, 1605, 1580, 1582, 1607, 1605, - 1580, 1607, 1605, 1605, 1606, 1581, 1605, 1606, - 1581, 1609, 1606, 1580, 1605, 1606, 1580, 1609, - 1606, 1605, 1610, 1606, 1605, 1609, 1610, 1605, - 1605, 1576, 1582, 1610, 1578, 1580, 1610, 1578, - 1580, 1609, 1578, 1582, 1610, 1578, 1582, 1609, - 1578, 1605, 1610, 1578, 1605, 1609, 1580, 1605, - 1610, 1580, 1581, 1609, 1580, 1605, 1609, 1587, - 1582, 1609, 1589, 1581, 1610, 1588, 1581, 1610, - 1590, 1581, 1610, 1604, 1580, 1610, 1604, 1605, - 1610, 1610, 1581, 1610, 1610, 1580, 1610, 1610, - 1605, 1610, 1605, 1605, 1610, 1602, 1605, 1610, - 1606, 1581, 1610, 1593, 1605, 1610, 1603, 1605, - 1610, 1606, 1580, 1581, 1605, 1582, 1610, 1604, - 1580, 1605, 1603, 1605, 1605, 1580, 1581, 1610, - 1581, 1580, 1610, 1605, 1580, 1610, 1601, 1605, - 1610, 1576, 1581, 1610, 1587, 1582, 1610, 1606, - 1580, 1610, 1589, 1604, 1746, 1602, 1604, 1746, - 1575, 1604, 1604, 1607, 1575, 1603, 1576, 1585, - 1605, 1581, 1605, 1583, 1589, 1604, 1593, 1605, - 1585, 1587, 1608, 1604, 1593, 1604, 1610, 1607, - 1608, 1587, 1604, 1605, 1589, 1604, 1609, 17, - 1589, 1604, 1609, 32, 1575, 1604, 1604, 1607, - 32, 1593, 1604, 1610, 1607, 32, 1608, 1587, - 1604, 1605, 7, 1580, 1604, 32, 1580, 1604, - 1575, 1604, 1607, 1585, 1740, 1575, 1604, 44, - 12289, 12290, 58, 33, 63, 12310, 12311, 8230, - 8229, 8212, 8211, 95, 123, 125, 12308, 12309, - 12304, 12305, 12298, 12299, 12300, 12301, 12302, 12303, - 91, 93, 8254, 35, 38, 42, 45, 60, - 62, 92, 36, 37, 64, 32, 1611, 1600, - 1611, 32, 1612, 32, 1613, 32, 1614, 1600, - 1614, 32, 1615, 1600, 1615, 32, 1616, 1600, - 1616, 32, 1617, 1600, 1617, 32, 1618, 1600, - 1618, 1569, 1570, 1571, 1572, 1573, 1574, 1575, - 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, - 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, - 1592, 1593, 1594, 1601, 1602, 1603, 1604, 1605, - 1606, 1607, 1608, 1610, 1604, 1570, 1604, 1571, - 1604, 1573, 1604, 1575, 34, 39, 47, 65345, - 65346, 65347, 65348, 65349, 65350, 65351, 65352, 65353, - 65354, 65355, 65356, 65357, 65358, 65359, 65360, 65361, - 65362, 65363, 65364, 65365, 65366, 65367, 65368, 65369, - 65370, 94, 124, 126, 10629, 10630, 12539, 12449, - 12451, 12453, 12455, 12457, 12515, 12517, 12519, 12483, - 12540, 12531, 12441, 12442, 12644, 12593, 12594, 12595, - 12596, 12597, 12598, 12599, 12600, 12601, 12602, 12603, - 12604, 12605, 12606, 12607, 12608, 12609, 12610, 12611, - 12612, 12613, 12614, 12615, 12616, 12617, 12618, 12619, - 12620, 12621, 12622, 12623, 12624, 12625, 12626, 12627, - 12628, 12629, 12630, 12631, 12632, 12633, 12634, 12635, - 12636, 12637, 12638, 12639, 12640, 12641, 12642, 12643, - 162, 163, 172, 175, 166, 165, 8361, 9474, - 8592, 8593, 8594, 8595, 9632, 9675, 55297, 56360, - 55297, 56361, 55297, 56362, 55297, 56363, 55297, 56364, - 55297, 56365, 55297, 56366, 55297, 56367, 55297, 56368, - 55297, 56369, 55297, 56370, 55297, 56371, 55297, 56372, - 55297, 56373, 55297, 56374, 55297, 56375, 55297, 56376, - 55297, 56377, 55297, 56378, 55297, 56379, 55297, 56380, - 55297, 56381, 55297, 56382, 55297, 56383, 55297, 56384, - 55297, 56385, 55297, 56386, 55297, 56387, 55297, 56388, - 55297, 56389, 55297, 56390, 55297, 56391, 55297, 56392, - 55297, 56393, 55297, 56394, 55297, 56395, 55297, 56396, - 55297, 56397, 55297, 56398, 55297, 56399, 55297, 56536, - 55297, 56537, 55297, 56538, 55297, 56539, 55297, 56540, - 55297, 56541, 55297, 56542, 55297, 56543, 55297, 56544, - 55297, 56545, 55297, 56546, 55297, 56547, 55297, 56548, - 55297, 56549, 55297, 56550, 55297, 56551, 55297, 56552, - 55297, 56553, 55297, 56554, 55297, 56555, 55297, 56556, - 55297, 56557, 55297, 56558, 55297, 56559, 55297, 56560, - 55297, 56561, 55297, 56562, 55297, 56563, 55297, 56564, - 55297, 56565, 55297, 56566, 55297, 56567, 55297, 56568, - 55297, 56569, 55297, 56570, 55297, 56571, 55299, 56512, - 55299, 56513, 55299, 56514, 55299, 56515, 55299, 56516, - 55299, 56517, 55299, 56518, 55299, 56519, 55299, 56520, - 55299, 56521, 55299, 56522, 55299, 56523, 55299, 56524, - 55299, 56525, 55299, 56526, 55299, 56527, 55299, 56528, - 55299, 56529, 55299, 56530, 55299, 56531, 55299, 56532, - 55299, 56533, 55299, 56534, 55299, 56535, 55299, 56536, - 55299, 56537, 55299, 56538, 55299, 56539, 55299, 56540, - 55299, 56541, 55299, 56542, 55299, 56543, 55299, 56544, - 55299, 56545, 55299, 56546, 55299, 56547, 55299, 56548, - 55299, 56549, 55299, 56550, 55299, 56551, 55299, 56552, - 55299, 56553, 55299, 56554, 55299, 56555, 55299, 56556, - 55299, 56557, 55299, 56558, 55299, 56559, 55299, 56560, - 55299, 56561, 55299, 56562, 55300, 56473, 55300, 56506, - 55300, 56475, 55300, 56506, 55300, 56485, 55300, 56506, - 55300, 56625, 55300, 56615, 55300, 56626, 55300, 56615, - 55300, 57159, 55300, 57150, 55300, 57159, 55300, 57175, - 55301, 56505, 55301, 56506, 55301, 56505, 55301, 56496, - 55301, 56505, 55301, 56509, 55301, 56760, 55301, 56751, - 55301, 56761, 55301, 56751, 55302, 56512, 55302, 56513, - 55302, 56514, 55302, 56515, 55302, 56516, 55302, 56517, - 55302, 56518, 55302, 56519, 55302, 56520, 55302, 56521, - 55302, 56522, 55302, 56523, 55302, 56524, 55302, 56525, - 55302, 56526, 55302, 56527, 55302, 56528, 55302, 56529, - 55302, 56530, 55302, 56531, 55302, 56532, 55302, 56533, - 55302, 56534, 55302, 56535, 55302, 56536, 55302, 56537, - 55302, 56538, 55302, 56539, 55302, 56540, 55302, 56541, - 55302, 56542, 55302, 56543, 55348, 56663, 55348, 56677, - 55348, 56664, 55348, 56677, 55348, 56671, 55348, 56686, - 55348, 56671, 55348, 56687, 55348, 56671, 55348, 56688, - 55348, 56671, 55348, 56689, 55348, 56671, 55348, 56690, - 55348, 56761, 55348, 56677, 55348, 56762, 55348, 56677, - 55348, 56763, 55348, 56686, 55348, 56764, 55348, 56686, - 55348, 56763, 55348, 56687, 55348, 56764, 55348, 56687, - 305, 567, 913, 914, 916, 917, 918, 919, - 921, 922, 923, 924, 925, 926, 927, 929, - 1012, 932, 934, 935, 936, 8711, 8706, 1013, - 977, 1008, 981, 1009, 982, 988, 55354, 56610, - 55354, 56611, 55354, 56612, 55354, 56613, 55354, 56614, - 55354, 56615, 55354, 56616, 55354, 56617, 55354, 56618, - 55354, 56619, 55354, 56620, 55354, 56621, 55354, 56622, - 55354, 56623, 55354, 56624, 55354, 56625, 55354, 56626, - 55354, 56627, 55354, 56628, 55354, 56629, 55354, 56630, - 55354, 56631, 55354, 56632, 55354, 56633, 55354, 56634, - 55354, 56635, 55354, 56636, 55354, 56637, 55354, 56638, - 55354, 56639, 55354, 56640, 55354, 56641, 55354, 56642, - 55354, 56643, 1646, 1697, 1647, 48, 46, 48, - 44, 49, 44, 50, 44, 51, 44, 52, - 44, 53, 44, 54, 44, 55, 44, 56, - 44, 57, 44, 40, 65, 41, 40, 66, - 41, 40, 67, 41, 40, 68, 41, 40, - 69, 41, 40, 70, 41, 40, 71, 41, - 40, 72, 41, 40, 73, 41, 40, 74, - 41, 40, 75, 41, 40, 76, 41, 40, - 77, 41, 40, 78, 41, 40, 79, 41, - 40, 80, 41, 40, 81, 41, 40, 82, - 41, 40, 83, 41, 40, 84, 41, 40, - 85, 41, 40, 86, 41, 40, 87, 41, - 40, 88, 41, 40, 89, 41, 40, 90, - 41, 12308, 83, 12309, 67, 68, 87, 90, - 72, 86, 83, 68, 83, 83, 80, 80, - 86, 87, 67, 77, 67, 77, 68, 68, - 74, 12411, 12363, 12467, 12467, 23383, 21452, 12487, - 22810, 35299, 20132, 26144, 28961, 21069, 24460, 20877, - 26032, 21021, 32066, 36009, 22768, 21561, 28436, 25237, - 25429, 36938, 25351, 25171, 31105, 31354, 21512, 28288, - 30003, 21106, 21942, 37197, 12308, 26412, 12309, 12308, - 19977, 12309, 12308, 20108, 12309, 12308, 23433, 12309, - 12308, 28857, 12309, 12308, 25171, 12309, 12308, 30423, - 12309, 12308, 21213, 12309, 12308, 25943, 12309, 24471, - 21487, 20029, 20024, 20033, 55360, 56610, 20320, 20411, - 20482, 20602, 20633, 20687, 13470, 55361, 56890, 20820, - 20836, 20855, 55361, 56604, 13497, 20839, 55361, 56651, - 20887, 20900, 20172, 20908, 55396, 56799, 20995, 13535, - 21051, 21062, 21111, 13589, 21253, 21254, 21321, 21338, - 21363, 21373, 21375, 55362, 56876, 28784, 21450, 21471, - 55362, 57187, 21483, 21489, 21510, 21662, 21560, 21576, - 21608, 21666, 21750, 21776, 21843, 21859, 21892, 21931, - 21939, 21954, 22294, 22295, 22097, 22132, 22766, 22478, - 22516, 22541, 22411, 22578, 22577, 22700, 55365, 56548, - 22770, 22775, 22790, 22818, 22882, 55365, 57000, 55365, - 57066, 23020, 23067, 23079, 23000, 23142, 14062, 14076, - 23304, 23358, 55366, 56776, 23491, 23512, 23539, 55366, - 57112, 23551, 23558, 24403, 14209, 23648, 23744, 23693, - 55367, 56804, 23875, 55367, 56806, 23918, 23915, 23932, - 24033, 24034, 14383, 24061, 24104, 24125, 24169, 14434, - 55368, 56707, 14460, 24240, 24243, 24246, 55400, 57234, - 55368, 57137, 33281, 24354, 14535, 55372, 57016, 55384, - 56794, 24418, 24427, 14563, 24474, 24525, 24535, 24569, - 24705, 14650, 14620, 55369, 57044, 24775, 24904, 24908, - 24954, 25010, 24996, 25007, 25054, 25104, 25115, 25181, - 25265, 25300, 25424, 55370, 57100, 25405, 25340, 25448, - 25475, 25572, 55370, 57329, 25634, 25541, 25513, 14894, - 25705, 25726, 25757, 25719, 14956, 25964, 55372, 56330, - 26083, 26360, 26185, 15129, 15112, 15076, 20882, 20885, - 26368, 26268, 32941, 17369, 26401, 26462, 26451, 55372, - 57283, 15177, 26618, 26501, 26706, 55373, 56429, 26766, - 26655, 26900, 26946, 27043, 27114, 27304, 55373, 56995, - 27355, 15384, 27425, 55374, 56487, 27476, 15438, 27506, - 27551, 27579, 55374, 56973, 55367, 56587, 55374, 57082, - 27726, 55375, 56508, 27839, 27853, 27751, 27926, 27966, - 28009, 28024, 28037, 55375, 56606, 27956, 28207, 28270, - 15667, 28359, 55375, 57041, 28153, 28526, 55375, 57182, - 55375, 57230, 28614, 28729, 28699, 15766, 28746, 28797, - 28791, 28845, 55361, 56613, 28997, 55376, 56931, 29084, - 55376, 57259, 29224, 29264, 55377, 56840, 29312, 29333, - 55377, 57141, 55378, 56340, 29562, 29579, 16044, 29605, - 16056, 29767, 29788, 29829, 29898, 16155, 29988, 55379, - 56374, 30014, 55379, 56466, 55368, 56735, 30224, 55379, - 57249, 55379, 57272, 55380, 56388, 16380, 16392, 55380, - 56563, 55380, 56562, 55380, 56601, 55380, 56627, 30494, - 30495, 30603, 16454, 16534, 55381, 56349, 30798, 16611, - 55381, 56870, 55381, 56986, 55381, 57029, 31211, 16687, - 31306, 31311, 55382, 56700, 55382, 56999, 31470, 16898, - 55382, 57259, 31686, 31689, 16935, 55383, 56448, 31954, - 17056, 31976, 31971, 32000, 55383, 57222, 32099, 17153, - 32199, 32258, 32325, 17204, 55384, 56872, 55384, 56903, - 17241, 55384, 57049, 32634, 55384, 57150, 32661, 32762, - 55385, 56538, 55385, 56611, 32864, 55385, 56744, 32880, - 55372, 57183, 17365, 32946, 33027, 17419, 33086, 23221, - 55385, 57255, 55385, 57269, 55372, 57235, 55372, 57244, - 33284, 36766, 17515, 33425, 33419, 33437, 21171, 33457, - 33459, 33469, 33510, 55386, 57148, 33565, 33635, 33709, - 33571, 33725, 33767, 33619, 33738, 33740, 33756, 55387, - 56374, 55387, 56683, 55387, 56533, 17707, 34033, 34035, - 34070, 55388, 57290, 34148, 55387, 57132, 17757, 17761, - 55387, 57265, 55388, 56530, 17771, 34384, 34407, 34409, - 34473, 34440, 34574, 34530, 34600, 34667, 34694, 17879, - 34785, 34817, 17913, 34912, 55389, 56935, 35031, 35038, - 17973, 35066, 13499, 55390, 56494, 55390, 56678, 18110, - 18119, 35488, 55391, 56488, 36011, 36033, 36123, 36215, - 55391, 57135, 55362, 56324, 36299, 36284, 36336, 55362, - 56542, 36564, 55393, 56786, 55393, 56813, 37012, 37105, - 37137, 55393, 57134, 37147, 37432, 37591, 37592, 37500, - 37881, 37909, 55394, 57338, 38283, 18837, 38327, 55395, - 56695, 18918, 38595, 23986, 38691, 55396, 56645, 55396, - 56858, 19054, 19062, 38880, 55397, 56330, 19122, 55397, - 56470, 38953, 55397, 56758, 39138, 19251, 39209, 39335, - 39362, 39422, 19406, 55398, 57136, 40000, 40189, 19662, - 19693, 40295, 55400, 56526, 19704, 55400, 56581, 55400, - 56846, 55400, 56977, 19798, 40702, 40709, 40719, 40726, - 55401, 56832, 192, 193, 194, 195, 196, 199, - 200, 201, 202, 203, 204, 205, 206, 207, - 208, 209, 210, 211, 212, 213, 214, 216, - 217, 218, 219, 220, 221, 222, 376, 256, - 258, 260, 262, 264, 266, 268, 270, 272, - 274, 276, 278, 280, 282, 284, 286, 288, - 290, 292, 296, 298, 300, 302, 306, 308, - 310, 313, 315, 317, 319, 321, 323, 325, - 327, 330, 332, 334, 336, 338, 340, 342, - 344, 346, 348, 350, 352, 354, 356, 358, - 360, 362, 364, 366, 368, 370, 372, 374, - 377, 379, 381, 579, 386, 388, 391, 395, - 401, 502, 408, 573, 544, 416, 418, 420, - 423, 428, 431, 435, 437, 440, 444, 503, - 453, 452, 456, 455, 459, 458, 461, 463, - 465, 467, 469, 471, 473, 475, 478, 480, - 482, 484, 486, 488, 490, 492, 494, 498, - 497, 500, 504, 506, 508, 510, 512, 514, - 516, 518, 520, 522, 524, 526, 528, 530, - 532, 534, 536, 538, 540, 542, 548, 550, - 552, 554, 556, 558, 560, 562, 571, 11390, - 11391, 577, 582, 584, 586, 588, 590, 11375, - 11373, 11376, 385, 390, 393, 394, 399, 42923, - 403, 42924, 404, 42893, 42922, 407, 406, 42926, - 11362, 42925, 412, 11374, 413, 415, 11364, 422, - 425, 42929, 430, 580, 433, 434, 581, 439, - 42930, 42928, 880, 882, 886, 1021, 1022, 1023, - 938, 939, 975, 984, 986, 990, 992, 994, - 996, 998, 1000, 1002, 1004, 1006, 1017, 895, - 1015, 1018, 1040, 1041, 1042, 1043, 1044, 1045, - 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, - 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, - 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, - 1070, 1071, 1024, 1025, 1026, 1027, 1028, 1029, - 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, - 1038, 1039, 1120, 1122, 1124, 1126, 1128, 1130, - 1132, 1134, 1136, 1138, 1140, 1142, 1144, 1146, - 1148, 1150, 1152, 1162, 1164, 1166, 1168, 1170, - 1172, 1174, 1176, 1178, 1180, 1182, 1184, 1186, - 1188, 1190, 1192, 1194, 1196, 1198, 1200, 1202, - 1204, 1206, 1208, 1210, 1212, 1214, 1217, 1219, - 1221, 1223, 1225, 1227, 1229, 1216, 1232, 1234, - 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, - 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, - 1268, 1270, 1272, 1274, 1276, 1278, 1280, 1282, - 1284, 1286, 1288, 1290, 1292, 1294, 1296, 1298, - 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, - 1316, 1318, 1320, 1322, 1324, 1326, 1329, 1330, - 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, - 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, - 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, - 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, - 1363, 1364, 1365, 1366, 43888, 43889, 43890, 43891, - 43892, 43893, 43894, 43895, 43896, 43897, 43898, 43899, - 43900, 43901, 43902, 43903, 43904, 43905, 43906, 43907, - 43908, 43909, 43910, 43911, 43912, 43913, 43914, 43915, - 43916, 43917, 43918, 43919, 43920, 43921, 43922, 43923, - 43924, 43925, 43926, 43927, 43928, 43929, 43930, 43931, - 43932, 43933, 43934, 43935, 43936, 43937, 43938, 43939, - 43940, 43941, 43942, 43943, 43944, 43945, 43946, 43947, - 43948, 43949, 43950, 43951, 43952, 43953, 43954, 43955, - 43956, 43957, 43958, 43959, 43960, 43961, 43962, 43963, - 43964, 43965, 43966, 43967, 5112, 5113, 5114, 5115, - 5116, 5117, 42570, 42877, 11363, 7680, 7682, 7684, - 7686, 7688, 7690, 7692, 7694, 7696, 7698, 7700, - 7702, 7704, 7706, 7708, 7710, 7712, 7714, 7716, - 7718, 7720, 7722, 7724, 7726, 7728, 7730, 7732, - 7734, 7736, 7738, 7740, 7742, 7744, 7746, 7748, - 7750, 7752, 7754, 7756, 7758, 7760, 7762, 7764, - 7766, 7768, 7770, 7772, 7774, 7776, 7778, 7780, - 7782, 7784, 7786, 7788, 7790, 7792, 7794, 7796, - 7798, 7800, 7802, 7804, 7806, 7808, 7810, 7812, - 7814, 7816, 7818, 7820, 7822, 7824, 7826, 7828, - 7840, 7842, 7844, 7846, 7848, 7850, 7852, 7854, - 7856, 7858, 7860, 7862, 7864, 7866, 7868, 7870, - 7872, 7874, 7876, 7878, 7880, 7882, 7884, 7886, - 7888, 7890, 7892, 7894, 7896, 7898, 7900, 7902, - 7904, 7906, 7908, 7910, 7912, 7914, 7916, 7918, - 7920, 7922, 7924, 7926, 7928, 7930, 7932, 7934, - 7944, 7945, 7946, 7947, 7948, 7949, 7950, 7951, - 7960, 7961, 7962, 7963, 7964, 7965, 7976, 7977, - 7978, 7979, 7980, 7981, 7982, 7983, 7992, 7993, - 7994, 7995, 7996, 7997, 7998, 7999, 8008, 8009, - 8010, 8011, 8012, 8013, 8025, 8027, 8029, 8031, - 8040, 8041, 8042, 8043, 8044, 8045, 8046, 8047, - 8122, 8123, 8136, 8137, 8138, 8139, 8154, 8155, - 8184, 8185, 8170, 8171, 8186, 8187, 8072, 8073, - 8074, 8075, 8076, 8077, 8078, 8079, 8088, 8089, - 8090, 8091, 8092, 8093, 8094, 8095, 8104, 8105, - 8106, 8107, 8108, 8109, 8110, 8111, 8120, 8121, - 8124, 8140, 8152, 8153, 8168, 8169, 8172, 8188, - 8498, 8544, 8545, 8546, 8547, 8548, 8549, 8550, - 8551, 8552, 8553, 8554, 8555, 8556, 8557, 8558, - 8559, 8579, 9398, 9399, 9400, 9401, 9402, 9403, - 9404, 9405, 9406, 9407, 9408, 9409, 9410, 9411, - 9412, 9413, 9414, 9415, 9416, 9417, 9418, 9419, - 9420, 9421, 9422, 9423, 11264, 11265, 11266, 11267, - 11268, 11269, 11270, 11271, 11272, 11273, 11274, 11275, - 11276, 11277, 11278, 11279, 11280, 11281, 11282, 11283, - 11284, 11285, 11286, 11287, 11288, 11289, 11290, 11291, - 11292, 11293, 11294, 11295, 11296, 11297, 11298, 11299, - 11300, 11301, 11302, 11303, 11304, 11305, 11306, 11307, - 11308, 11309, 11310, 11360, 570, 574, 11367, 11369, - 11371, 11378, 11381, 11392, 11394, 11396, 11398, 11400, - 11402, 11404, 11406, 11408, 11410, 11412, 11414, 11416, - 11418, 11420, 11422, 11424, 11426, 11428, 11430, 11432, - 11434, 11436, 11438, 11440, 11442, 11444, 11446, 11448, - 11450, 11452, 11454, 11456, 11458, 11460, 11462, 11464, - 11466, 11468, 11470, 11472, 11474, 11476, 11478, 11480, - 11482, 11484, 11486, 11488, 11490, 11499, 11501, 11506, + 6974, 6965, 6975, 6965, 6978, 6965, 42571, 4304, + 4305, 4306, 4307, 4308, 4309, 4310, 4311, 4312, + 4313, 4314, 4315, 4317, 4318, 4319, 4320, 4321, + 4322, 4323, 4324, 4325, 4326, 4327, 4328, 4329, + 4330, 4331, 4332, 4333, 4334, 4335, 4336, 4337, + 4338, 4339, 4340, 4341, 4342, 4343, 4344, 4345, + 4346, 4349, 4350, 4351, 65, 198, 66, 68, + 69, 398, 71, 72, 73, 74, 75, 76, + 77, 78, 79, 546, 80, 82, 84, 85, + 87, 592, 593, 7426, 604, 7446, 7447, 7453, + 7461, 594, 597, 607, 609, 613, 618, 7547, + 669, 621, 7557, 671, 625, 624, 627, 628, + 632, 642, 427, 7452, 656, 657, 65, 805, + 7681, 97, 805, 66, 775, 7683, 98, 775, + 66, 803, 7685, 98, 803, 66, 817, 7687, + 98, 817, 199, 769, 7689, 231, 769, 68, + 775, 7691, 100, 775, 68, 803, 7693, 100, + 803, 68, 817, 7695, 100, 817, 68, 807, + 7697, 100, 807, 68, 813, 7699, 100, 813, + 274, 768, 7701, 275, 768, 274, 769, 7703, + 275, 769, 69, 813, 7705, 101, 813, 69, + 816, 7707, 101, 816, 552, 774, 7709, 553, + 774, 70, 775, 7711, 102, 775, 71, 772, + 7713, 103, 772, 72, 775, 7715, 104, 775, + 72, 803, 7717, 104, 803, 72, 776, 7719, + 104, 776, 72, 807, 7721, 104, 807, 72, + 814, 7723, 104, 814, 73, 816, 7725, 105, + 816, 207, 769, 7727, 239, 769, 75, 769, + 7729, 107, 769, 75, 803, 7731, 107, 803, + 75, 817, 7733, 107, 817, 76, 803, 7735, + 108, 803, 7734, 772, 7737, 7735, 772, 76, + 817, 7739, 108, 817, 76, 813, 7741, 108, + 813, 77, 769, 7743, 109, 769, 77, 775, + 7745, 109, 775, 77, 803, 7747, 109, 803, + 78, 775, 7749, 110, 775, 78, 803, 7751, + 110, 803, 78, 817, 7753, 110, 817, 78, + 813, 7755, 110, 813, 213, 769, 7757, 245, + 769, 213, 776, 7759, 245, 776, 332, 768, + 7761, 333, 768, 332, 769, 7763, 333, 769, + 80, 769, 7765, 112, 769, 80, 775, 7767, + 112, 775, 82, 775, 7769, 114, 775, 82, + 803, 7771, 114, 803, 7770, 772, 7773, 7771, + 772, 82, 817, 7775, 114, 817, 83, 775, + 7777, 115, 775, 83, 803, 7779, 115, 803, + 346, 775, 7781, 347, 775, 352, 775, 7783, + 353, 775, 7778, 775, 7785, 7779, 775, 84, + 775, 7787, 116, 775, 84, 803, 7789, 116, + 803, 84, 817, 7791, 116, 817, 84, 813, + 7793, 116, 813, 85, 804, 7795, 117, 804, + 85, 816, 7797, 117, 816, 85, 813, 7799, + 117, 813, 360, 769, 7801, 361, 769, 362, + 776, 7803, 363, 776, 86, 771, 7805, 118, + 771, 86, 803, 7807, 118, 803, 87, 768, + 7809, 119, 768, 87, 769, 7811, 119, 769, + 87, 776, 7813, 119, 776, 87, 775, 7815, + 119, 775, 87, 803, 7817, 119, 803, 88, + 775, 7819, 120, 775, 88, 776, 7821, 120, + 776, 89, 775, 7823, 121, 775, 90, 770, + 7825, 122, 770, 90, 803, 7827, 122, 803, + 90, 817, 7829, 122, 817, 104, 817, 116, + 776, 119, 778, 121, 778, 97, 702, 383, + 775, 65, 803, 7841, 97, 803, 65, 777, + 7843, 97, 777, 194, 769, 7845, 226, 769, + 194, 768, 7847, 226, 768, 194, 777, 7849, + 226, 777, 194, 771, 7851, 226, 771, 7840, + 770, 7853, 7841, 770, 258, 769, 7855, 259, + 769, 258, 768, 7857, 259, 768, 258, 777, + 7859, 259, 777, 258, 771, 7861, 259, 771, + 7840, 774, 7863, 7841, 774, 69, 803, 7865, + 101, 803, 69, 777, 7867, 101, 777, 69, + 771, 7869, 101, 771, 202, 769, 7871, 234, + 769, 202, 768, 7873, 234, 768, 202, 777, + 7875, 234, 777, 202, 771, 7877, 234, 771, + 7864, 770, 7879, 7865, 770, 73, 777, 7881, + 105, 777, 73, 803, 7883, 105, 803, 79, + 803, 7885, 111, 803, 79, 777, 7887, 111, + 777, 212, 769, 7889, 244, 769, 212, 768, + 7891, 244, 768, 212, 777, 7893, 244, 777, + 212, 771, 7895, 244, 771, 7884, 770, 7897, + 7885, 770, 416, 769, 7899, 417, 769, 416, + 768, 7901, 417, 768, 416, 777, 7903, 417, + 777, 416, 771, 7905, 417, 771, 416, 803, + 7907, 417, 803, 85, 803, 7909, 117, 803, + 85, 777, 7911, 117, 777, 431, 769, 7913, + 432, 769, 431, 768, 7915, 432, 768, 431, + 777, 7917, 432, 777, 431, 771, 7919, 432, + 771, 431, 803, 7921, 432, 803, 89, 768, + 7923, 121, 768, 89, 803, 7925, 121, 803, + 89, 777, 7927, 121, 777, 89, 771, 7929, + 121, 771, 7931, 7933, 7935, 945, 787, 945, + 788, 7936, 768, 7937, 768, 7936, 769, 7937, + 769, 7936, 834, 7937, 834, 913, 787, 7936, + 913, 788, 7937, 7944, 768, 7938, 7945, 768, + 7939, 7944, 769, 7940, 7945, 769, 7941, 7944, + 834, 7942, 7945, 834, 7943, 949, 787, 949, + 788, 7952, 768, 7953, 768, 7952, 769, 7953, + 769, 917, 787, 7952, 917, 788, 7953, 7960, + 768, 7954, 7961, 768, 7955, 7960, 769, 7956, + 7961, 769, 7957, 951, 787, 951, 788, 7968, + 768, 7969, 768, 7968, 769, 7969, 769, 7968, + 834, 7969, 834, 919, 787, 7968, 919, 788, + 7969, 7976, 768, 7970, 7977, 768, 7971, 7976, + 769, 7972, 7977, 769, 7973, 7976, 834, 7974, + 7977, 834, 7975, 953, 787, 953, 788, 7984, + 768, 7985, 768, 7984, 769, 7985, 769, 7984, + 834, 7985, 834, 921, 787, 7984, 921, 788, + 7985, 7992, 768, 7986, 7993, 768, 7987, 7992, + 769, 7988, 7993, 769, 7989, 7992, 834, 7990, + 7993, 834, 7991, 959, 787, 959, 788, 8000, + 768, 8001, 768, 8000, 769, 8001, 769, 927, + 787, 8000, 927, 788, 8001, 8008, 768, 8002, + 8009, 768, 8003, 8008, 769, 8004, 8009, 769, + 8005, 965, 787, 965, 788, 8016, 768, 965, + 787, 768, 8017, 768, 8016, 769, 965, 787, + 769, 8017, 769, 8016, 834, 965, 787, 834, + 8017, 834, 933, 788, 8017, 8025, 768, 8019, + 8025, 769, 8021, 8025, 834, 8023, 969, 787, + 969, 788, 8032, 768, 8033, 768, 8032, 769, + 8033, 769, 8032, 834, 8033, 834, 937, 787, + 8032, 937, 788, 8033, 8040, 768, 8034, 8041, + 768, 8035, 8040, 769, 8036, 8041, 769, 8037, + 8040, 834, 8038, 8041, 834, 8039, 945, 768, + 949, 768, 951, 768, 953, 768, 959, 768, + 965, 768, 969, 768, 7936, 837, 7936, 953, + 7937, 837, 7937, 953, 7938, 837, 7938, 953, + 7939, 837, 7939, 953, 7940, 837, 7940, 953, + 7941, 837, 7941, 953, 7942, 837, 7942, 953, + 7943, 837, 7943, 953, 7944, 837, 7945, 837, + 7946, 837, 7947, 837, 7948, 837, 7949, 837, + 7950, 837, 7951, 837, 7968, 837, 7968, 953, + 7969, 837, 7969, 953, 7970, 837, 7970, 953, + 7971, 837, 7971, 953, 7972, 837, 7972, 953, + 7973, 837, 7973, 953, 7974, 837, 7974, 953, + 7975, 837, 7975, 953, 7976, 837, 7977, 837, + 7978, 837, 7979, 837, 7980, 837, 7981, 837, + 7982, 837, 7983, 837, 8032, 837, 8032, 953, + 8033, 837, 8033, 953, 8034, 837, 8034, 953, + 8035, 837, 8035, 953, 8036, 837, 8036, 953, + 8037, 837, 8037, 953, 8038, 837, 8038, 953, + 8039, 837, 8039, 953, 8040, 837, 8041, 837, + 8042, 837, 8043, 837, 8044, 837, 8045, 837, + 8046, 837, 8047, 837, 945, 774, 945, 772, + 8048, 837, 8048, 953, 945, 837, 945, 953, + 940, 837, 940, 953, 945, 834, 8118, 837, + 945, 834, 953, 913, 774, 8112, 913, 772, + 8113, 913, 768, 8048, 902, 8049, 913, 837, + 32, 787, 32, 834, 168, 834, 8052, 837, + 8052, 953, 951, 837, 951, 953, 942, 837, + 942, 953, 951, 834, 8134, 837, 951, 834, + 953, 917, 768, 8050, 904, 8051, 919, 768, + 8052, 905, 8053, 919, 837, 8127, 768, 8127, + 769, 8127, 834, 953, 774, 953, 772, 970, + 768, 953, 776, 768, 912, 953, 834, 970, + 834, 953, 776, 834, 921, 774, 8144, 921, + 772, 8145, 921, 768, 8054, 906, 8055, 8190, + 768, 8190, 769, 8190, 834, 965, 774, 965, + 772, 971, 768, 965, 776, 768, 944, 961, + 787, 961, 788, 965, 834, 971, 834, 965, + 776, 834, 933, 774, 8160, 933, 772, 8161, + 933, 768, 8058, 910, 8059, 929, 788, 8165, + 168, 768, 901, 96, 8060, 837, 8060, 953, + 969, 837, 969, 953, 974, 837, 974, 953, + 969, 834, 8182, 837, 969, 834, 953, 927, + 768, 8056, 908, 8057, 937, 768, 8060, 911, + 8061, 937, 837, 180, 32, 788, 8194, 8195, + 8208, 32, 819, 46, 46, 46, 46, 46, + 46, 8242, 8242, 8242, 8242, 8242, 8245, 8245, + 8245, 8245, 8245, 33, 33, 32, 773, 63, + 63, 63, 33, 33, 63, 8242, 8242, 8242, + 8242, 48, 52, 53, 54, 55, 56, 57, + 43, 8722, 61, 40, 41, 82, 115, 97, + 47, 99, 97, 47, 115, 67, 176, 67, + 99, 47, 111, 99, 47, 117, 400, 176, + 70, 78, 111, 81, 83, 77, 84, 69, + 76, 84, 77, 90, 937, 197, 70, 8526, + 1488, 1489, 1490, 1491, 70, 65, 88, 915, + 928, 8721, 49, 8260, 55, 49, 8260, 57, + 49, 8260, 49, 48, 49, 8260, 51, 50, + 8260, 51, 49, 8260, 53, 50, 8260, 53, + 51, 8260, 53, 52, 8260, 53, 49, 8260, + 54, 53, 8260, 54, 49, 8260, 56, 51, + 8260, 56, 53, 8260, 56, 55, 8260, 56, + 49, 8260, 8560, 73, 73, 8561, 73, 73, + 73, 8562, 73, 86, 8563, 86, 8564, 86, + 73, 8565, 86, 73, 73, 8566, 86, 73, + 73, 73, 8567, 73, 88, 8568, 88, 8569, + 88, 73, 8570, 88, 73, 73, 8571, 8572, + 8573, 8574, 8575, 105, 105, 105, 105, 105, + 105, 118, 118, 105, 118, 105, 105, 118, + 105, 105, 105, 105, 120, 120, 105, 120, + 105, 105, 8580, 48, 8260, 51, 8592, 824, + 8594, 824, 8596, 824, 8656, 824, 8660, 824, + 8658, 824, 8707, 824, 8712, 824, 8715, 824, + 8739, 824, 8741, 824, 8747, 8747, 8747, 8747, + 8747, 8750, 8750, 8750, 8750, 8750, 8764, 824, + 8771, 824, 8773, 824, 8776, 824, 61, 824, + 8801, 824, 8781, 824, 60, 824, 62, 824, + 8804, 824, 8805, 824, 8818, 824, 8819, 824, + 8822, 824, 8823, 824, 8826, 824, 8827, 824, + 8834, 824, 8835, 824, 8838, 824, 8839, 824, + 8866, 824, 8872, 824, 8873, 824, 8875, 824, + 8828, 824, 8829, 824, 8849, 824, 8850, 824, + 8882, 824, 8883, 824, 8884, 824, 8885, 824, + 12296, 12297, 49, 48, 49, 49, 49, 50, + 49, 51, 49, 52, 49, 53, 49, 54, + 49, 55, 49, 56, 49, 57, 50, 48, + 40, 49, 41, 40, 50, 41, 40, 51, + 41, 40, 52, 41, 40, 53, 41, 40, + 54, 41, 40, 55, 41, 40, 56, 41, + 40, 57, 41, 40, 49, 48, 41, 40, + 49, 49, 41, 40, 49, 50, 41, 40, + 49, 51, 41, 40, 49, 52, 41, 40, + 49, 53, 41, 40, 49, 54, 41, 40, + 49, 55, 41, 40, 49, 56, 41, 40, + 49, 57, 41, 40, 50, 48, 41, 49, + 46, 50, 46, 51, 46, 52, 46, 53, + 46, 54, 46, 55, 46, 56, 46, 57, + 46, 49, 48, 46, 49, 49, 46, 49, + 50, 46, 49, 51, 46, 49, 52, 46, + 49, 53, 46, 49, 54, 46, 49, 55, + 46, 49, 56, 46, 49, 57, 46, 50, + 48, 46, 40, 97, 41, 40, 98, 41, + 40, 99, 41, 40, 100, 41, 40, 101, + 41, 40, 102, 41, 40, 103, 41, 40, + 104, 41, 40, 105, 41, 40, 106, 41, + 40, 107, 41, 40, 108, 41, 40, 109, + 41, 40, 110, 41, 40, 111, 41, 40, + 112, 41, 40, 113, 41, 40, 114, 41, + 40, 115, 41, 40, 116, 41, 40, 117, + 41, 40, 118, 41, 40, 119, 41, 40, + 120, 41, 40, 121, 41, 40, 122, 41, + 9424, 9425, 9426, 9427, 9428, 9429, 9430, 9431, + 9432, 9433, 9434, 9435, 9436, 9437, 9438, 9439, + 9440, 9441, 83, 9442, 9443, 9444, 9445, 9446, + 9447, 89, 9448, 9449, 8747, 8747, 8747, 8747, + 58, 58, 61, 61, 61, 61, 61, 61, + 10973, 824, 11312, 11313, 11314, 11315, 11316, 11317, + 11318, 11319, 11320, 11321, 11322, 11323, 11324, 11325, + 11326, 11327, 11328, 11329, 11330, 11331, 11332, 11333, + 11334, 11335, 11336, 11337, 11338, 11339, 11340, 11341, + 11342, 11343, 11344, 11345, 11346, 11347, 11348, 11349, + 11350, 11351, 11352, 11353, 11354, 11355, 11356, 11357, + 11358, 11361, 619, 7549, 637, 11368, 11370, 11372, + 11379, 11382, 575, 576, 11393, 11395, 11397, 11399, + 11401, 11403, 11405, 11407, 11409, 11411, 11413, 11415, + 11417, 11419, 11421, 11423, 11425, 11427, 11429, 11431, + 11433, 11435, 11437, 11439, 11441, 11443, 11445, 11447, + 11449, 11451, 11453, 11455, 11457, 11459, 11461, 11463, + 11465, 11467, 11469, 11471, 11473, 11475, 11477, 11479, + 11481, 11483, 11485, 11487, 11489, 11491, 11500, 11502, + 11507, 11617, 27597, 40863, 19968, 20008, 20022, 20031, + 20057, 20101, 20108, 20128, 20154, 20799, 20837, 20843, + 20866, 20886, 20907, 20960, 20981, 20992, 21147, 21241, + 21269, 21274, 21304, 21313, 21340, 21353, 21378, 21430, + 21448, 21475, 22231, 22303, 22763, 22786, 22794, 22805, + 22823, 22899, 23376, 23424, 23544, 23567, 23586, 23608, + 23662, 23665, 24027, 24037, 24049, 24062, 24178, 24186, + 24191, 24308, 24318, 24331, 24339, 24400, 24417, 24435, + 24515, 25096, 25142, 25163, 25903, 25908, 25991, 26007, + 26020, 26041, 26080, 26085, 26352, 26376, 26408, 27424, + 27490, 27513, 27571, 27595, 27604, 27611, 27663, 27668, + 27700, 28779, 29226, 29238, 29243, 29247, 29255, 29273, + 29275, 29356, 29572, 29577, 29916, 29926, 29976, 29983, + 29992, 30000, 30091, 30098, 30326, 30333, 30382, 30399, + 30446, 30683, 30690, 30707, 31034, 31160, 31166, 31348, + 31435, 31481, 31859, 31992, 32566, 32593, 32650, 32701, + 32769, 32780, 32786, 32819, 32895, 32905, 33251, 33258, + 33267, 33276, 33292, 33307, 33311, 33390, 33394, 33400, + 34381, 34411, 34880, 34892, 34915, 35198, 35211, 35282, + 35328, 35895, 35910, 35925, 35960, 35997, 36196, 36208, + 36275, 36523, 36554, 36763, 36784, 36789, 37009, 37193, + 37318, 37324, 37329, 38263, 38272, 38428, 38582, 38585, + 38632, 38737, 38750, 38754, 38761, 38859, 38893, 38899, + 38913, 39080, 39131, 39135, 39318, 39321, 39340, 39592, + 39640, 39647, 39717, 39727, 39730, 39740, 39770, 40165, + 40565, 40575, 40613, 40635, 40643, 40653, 40657, 40697, + 40701, 40718, 40723, 40736, 40763, 40778, 40786, 40845, + 40860, 40864, 12306, 21316, 21317, 12363, 12441, 12365, + 12441, 12367, 12441, 12369, 12441, 12371, 12441, 12373, + 12441, 12375, 12441, 12377, 12441, 12379, 12441, 12381, + 12441, 12383, 12441, 12385, 12441, 12388, 12441, 12390, + 12441, 12392, 12441, 12399, 12441, 12399, 12442, 12402, + 12441, 12402, 12442, 12405, 12441, 12405, 12442, 12408, + 12441, 12408, 12442, 12411, 12441, 12411, 12442, 12358, + 12441, 32, 12441, 32, 12442, 12445, 12441, 12424, + 12426, 12459, 12441, 12461, 12441, 12463, 12441, 12465, + 12441, 12467, 12441, 12469, 12441, 12471, 12441, 12473, + 12441, 12475, 12441, 12477, 12441, 12479, 12441, 12481, + 12441, 12484, 12441, 12486, 12441, 12488, 12441, 12495, + 12441, 12495, 12442, 12498, 12441, 12498, 12442, 12501, + 12441, 12501, 12442, 12504, 12441, 12504, 12442, 12507, + 12441, 12507, 12442, 12454, 12441, 12527, 12441, 12528, + 12441, 12529, 12441, 12530, 12441, 12541, 12441, 12467, + 12488, 4352, 4353, 4522, 4354, 4524, 4525, 4355, + 4356, 4357, 4528, 4529, 4530, 4531, 4532, 4533, + 4378, 4358, 4359, 4360, 4385, 4361, 4362, 4363, + 4364, 4365, 4366, 4367, 4368, 4369, 4370, 4449, + 4450, 4451, 4452, 4453, 4454, 4455, 4456, 4457, + 4458, 4459, 4460, 4461, 4462, 4463, 4464, 4465, + 4466, 4467, 4468, 4469, 4448, 4372, 4373, 4551, + 4552, 4556, 4558, 4563, 4567, 4569, 4380, 4573, + 4575, 4381, 4382, 4384, 4386, 4387, 4391, 4393, + 4395, 4396, 4397, 4398, 4399, 4402, 4406, 4416, + 4423, 4428, 4593, 4594, 4439, 4440, 4441, 4484, + 4485, 4488, 4497, 4498, 4500, 4510, 4513, 19977, + 22235, 19978, 20013, 19979, 30002, 19993, 19969, 22825, + 22320, 40, 4352, 41, 40, 4354, 41, 40, + 4355, 41, 40, 4357, 41, 40, 4358, 41, + 40, 4359, 41, 40, 4361, 41, 40, 4363, + 41, 40, 4364, 41, 40, 4366, 41, 40, + 4367, 41, 40, 4368, 41, 40, 4369, 41, + 40, 4370, 41, 40, 4352, 4449, 41, 40, + 4354, 4449, 41, 40, 4355, 4449, 41, 40, + 4357, 4449, 41, 40, 4358, 4449, 41, 40, + 4359, 4449, 41, 40, 4361, 4449, 41, 40, + 4363, 4449, 41, 40, 4364, 4449, 41, 40, + 4366, 4449, 41, 40, 4367, 4449, 41, 40, + 4368, 4449, 41, 40, 4369, 4449, 41, 40, + 4370, 4449, 41, 40, 4364, 4462, 41, 40, + 4363, 4457, 4364, 4453, 4523, 41, 40, 4363, + 4457, 4370, 4462, 41, 40, 19968, 41, 40, + 20108, 41, 40, 19977, 41, 40, 22235, 41, + 40, 20116, 41, 40, 20845, 41, 40, 19971, + 41, 40, 20843, 41, 40, 20061, 41, 40, + 21313, 41, 40, 26376, 41, 40, 28779, 41, + 40, 27700, 41, 40, 26408, 41, 40, 37329, + 41, 40, 22303, 41, 40, 26085, 41, 40, + 26666, 41, 40, 26377, 41, 40, 31038, 41, + 40, 21517, 41, 40, 29305, 41, 40, 36001, + 41, 40, 31069, 41, 40, 21172, 41, 40, + 20195, 41, 40, 21628, 41, 40, 23398, 41, + 40, 30435, 41, 40, 20225, 41, 40, 36039, + 41, 40, 21332, 41, 40, 31085, 41, 40, + 20241, 41, 40, 33258, 41, 40, 33267, 41, + 21839, 24188, 31631, 80, 84, 69, 50, 49, + 50, 50, 50, 51, 50, 52, 50, 53, + 50, 54, 50, 55, 50, 56, 50, 57, + 51, 48, 51, 49, 51, 50, 51, 51, + 51, 52, 51, 53, 4352, 4449, 4354, 4449, + 4355, 4449, 4357, 4449, 4358, 4449, 4359, 4449, + 4361, 4449, 4363, 4449, 4364, 4449, 4366, 4449, + 4367, 4449, 4368, 4449, 4369, 4449, 4370, 4449, + 4366, 4449, 4535, 4352, 4457, 4364, 4462, 4363, + 4468, 4363, 4462, 20116, 20845, 19971, 20061, 26666, + 26377, 31038, 21517, 29305, 36001, 31069, 21172, 31192, + 30007, 36969, 20778, 21360, 27880, 38917, 20241, 20889, + 27491, 24038, 21491, 21307, 23447, 23398, 30435, 20225, + 36039, 21332, 22812, 51, 54, 51, 55, 51, + 56, 51, 57, 52, 48, 52, 49, 52, + 50, 52, 51, 52, 52, 52, 53, 52, + 54, 52, 55, 52, 56, 52, 57, 53, + 48, 49, 26376, 50, 26376, 51, 26376, 52, + 26376, 53, 26376, 54, 26376, 55, 26376, 56, + 26376, 57, 26376, 49, 48, 26376, 49, 49, + 26376, 49, 50, 26376, 72, 103, 101, 114, + 103, 101, 86, 76, 84, 68, 12450, 12452, + 12454, 12456, 12458, 12459, 12461, 12463, 12465, 12467, + 12469, 12471, 12473, 12475, 12477, 12479, 12481, 12484, + 12486, 12488, 12490, 12491, 12492, 12493, 12494, 12495, + 12498, 12501, 12504, 12507, 12510, 12511, 12512, 12513, + 12514, 12516, 12518, 12520, 12521, 12522, 12523, 12524, + 12525, 12527, 12528, 12529, 12530, 20196, 21644, 12450, + 12497, 12540, 12488, 12450, 12523, 12501, 12449, 12450, + 12531, 12506, 12450, 12450, 12540, 12523, 12452, 12491, + 12531, 12464, 12452, 12531, 12481, 12454, 12457, 12531, + 12456, 12473, 12463, 12540, 12489, 12456, 12540, 12459, + 12540, 12458, 12531, 12473, 12458, 12540, 12512, 12459, + 12452, 12522, 12459, 12521, 12483, 12488, 12459, 12525, + 12522, 12540, 12460, 12525, 12531, 12460, 12531, 12510, + 12462, 12460, 12462, 12491, 12540, 12461, 12517, 12522, + 12540, 12462, 12523, 12480, 12540, 12461, 12525, 12461, + 12525, 12464, 12521, 12512, 12461, 12525, 12513, 12540, + 12488, 12523, 12461, 12525, 12527, 12483, 12488, 12464, + 12521, 12512, 12464, 12521, 12512, 12488, 12531, 12463, + 12523, 12476, 12452, 12525, 12463, 12525, 12540, 12493, + 12465, 12540, 12473, 12467, 12523, 12490, 12467, 12540, + 12509, 12469, 12452, 12463, 12523, 12469, 12531, 12481, + 12540, 12512, 12471, 12522, 12531, 12464, 12475, 12531, + 12481, 12475, 12531, 12488, 12480, 12540, 12473, 12487, + 12471, 12489, 12523, 12488, 12531, 12490, 12494, 12494, + 12483, 12488, 12495, 12452, 12484, 12497, 12540, 12475, + 12531, 12488, 12497, 12540, 12484, 12496, 12540, 12524, + 12523, 12500, 12450, 12473, 12488, 12523, 12500, 12463, + 12523, 12500, 12467, 12499, 12523, 12501, 12449, 12521, + 12483, 12489, 12501, 12451, 12540, 12488, 12502, 12483, + 12471, 12455, 12523, 12501, 12521, 12531, 12504, 12463, + 12479, 12540, 12523, 12506, 12477, 12506, 12491, 12498, + 12504, 12523, 12484, 12506, 12531, 12473, 12506, 12540, + 12472, 12505, 12540, 12479, 12509, 12452, 12531, 12488, + 12508, 12523, 12488, 12507, 12531, 12509, 12531, 12489, + 12507, 12540, 12523, 12507, 12540, 12531, 12510, 12452, + 12463, 12525, 12510, 12452, 12523, 12510, 12483, 12495, + 12510, 12523, 12463, 12510, 12531, 12471, 12519, 12531, + 12511, 12463, 12525, 12531, 12511, 12522, 12511, 12522, + 12496, 12540, 12523, 12513, 12460, 12513, 12460, 12488, + 12531, 12513, 12540, 12488, 12523, 12516, 12540, 12489, + 12516, 12540, 12523, 12518, 12450, 12531, 12522, 12483, + 12488, 12523, 12522, 12521, 12523, 12500, 12540, 12523, + 12540, 12502, 12523, 12524, 12512, 12524, 12531, 12488, + 12466, 12531, 12527, 12483, 12488, 48, 28857, 49, + 28857, 50, 28857, 51, 28857, 52, 28857, 53, + 28857, 54, 28857, 55, 28857, 56, 28857, 57, + 28857, 49, 48, 28857, 49, 49, 28857, 49, + 50, 28857, 49, 51, 28857, 49, 52, 28857, + 49, 53, 28857, 49, 54, 28857, 49, 55, + 28857, 49, 56, 28857, 49, 57, 28857, 50, + 48, 28857, 50, 49, 28857, 50, 50, 28857, + 50, 51, 28857, 50, 52, 28857, 104, 80, + 97, 100, 97, 65, 85, 98, 97, 114, + 111, 86, 112, 99, 100, 109, 100, 109, + 178, 100, 109, 179, 73, 85, 24179, 25104, + 26157, 21644, 22823, 27491, 26126, 27835, 26666, 24335, + 20250, 31038, 112, 65, 110, 65, 956, 65, + 109, 65, 107, 65, 75, 66, 77, 66, + 71, 66, 99, 97, 108, 107, 99, 97, + 108, 112, 70, 110, 70, 956, 70, 956, + 103, 109, 103, 107, 103, 72, 122, 107, + 72, 122, 77, 72, 122, 71, 72, 122, + 84, 72, 122, 956, 8467, 109, 8467, 100, + 8467, 107, 8467, 102, 109, 110, 109, 956, + 109, 109, 109, 99, 109, 107, 109, 109, + 109, 178, 99, 109, 178, 109, 178, 107, + 109, 178, 109, 109, 179, 99, 109, 179, + 109, 179, 107, 109, 179, 109, 8725, 115, + 109, 8725, 115, 178, 80, 97, 107, 80, + 97, 77, 80, 97, 71, 80, 97, 114, + 97, 100, 114, 97, 100, 8725, 115, 114, + 97, 100, 8725, 115, 178, 112, 115, 110, + 115, 956, 115, 109, 115, 112, 86, 110, + 86, 956, 86, 109, 86, 107, 86, 77, + 86, 112, 87, 110, 87, 956, 87, 109, + 87, 107, 87, 77, 87, 107, 937, 77, + 937, 97, 46, 109, 46, 66, 113, 99, + 99, 99, 100, 67, 8725, 107, 103, 67, + 111, 46, 100, 66, 71, 121, 104, 97, + 72, 80, 105, 110, 75, 75, 75, 77, + 107, 116, 108, 109, 108, 110, 108, 111, + 103, 108, 120, 109, 98, 109, 105, 108, + 109, 111, 108, 80, 72, 112, 46, 109, + 46, 80, 80, 77, 80, 82, 115, 114, + 83, 118, 87, 98, 86, 8725, 109, 65, + 8725, 109, 49, 26085, 50, 26085, 51, 26085, + 52, 26085, 53, 26085, 54, 26085, 55, 26085, + 56, 26085, 57, 26085, 49, 48, 26085, 49, + 49, 26085, 49, 50, 26085, 49, 51, 26085, + 49, 52, 26085, 49, 53, 26085, 49, 54, + 26085, 49, 55, 26085, 49, 56, 26085, 49, + 57, 26085, 50, 48, 26085, 50, 49, 26085, + 50, 50, 26085, 50, 51, 26085, 50, 52, + 26085, 50, 53, 26085, 50, 54, 26085, 50, + 55, 26085, 50, 56, 26085, 50, 57, 26085, + 51, 48, 26085, 51, 49, 26085, 103, 97, + 108, 42561, 42563, 42565, 42567, 42569, 42573, 42575, + 42577, 42579, 42581, 42583, 42585, 42587, 42589, 42591, + 42593, 42595, 42597, 42599, 42601, 42603, 42605, 42625, + 42627, 42629, 42631, 42633, 42635, 42637, 42639, 42641, + 42643, 42645, 42647, 42649, 42651, 42787, 42789, 42791, + 42793, 42795, 42797, 42799, 42803, 42805, 42807, 42809, + 42811, 42813, 42815, 42817, 42819, 42821, 42823, 42825, + 42827, 42829, 42831, 42833, 42835, 42837, 42839, 42841, + 42843, 42845, 42847, 42849, 42851, 42853, 42855, 42857, + 42859, 42861, 42863, 42874, 42876, 7545, 42879, 42881, + 42883, 42885, 42887, 42892, 42897, 42899, 42903, 42905, + 42907, 42909, 42911, 42913, 42915, 42917, 42919, 42921, + 620, 670, 647, 43859, 42933, 42935, 42937, 42939, + 42941, 42943, 42947, 42900, 7566, 42952, 42954, 42998, + 294, 43831, 43858, 653, 5024, 5025, 5026, 5027, + 5028, 5029, 5030, 5031, 5032, 5033, 5034, 5035, + 5036, 5037, 5038, 5039, 5040, 5041, 5042, 5043, + 5044, 5045, 5046, 5047, 5048, 5049, 5050, 5051, + 5052, 5053, 5054, 5055, 5056, 5057, 5058, 5059, + 5060, 5061, 5062, 5063, 5064, 5065, 5066, 5067, + 5068, 5069, 5070, 5071, 5072, 5073, 5074, 5075, + 5076, 5077, 5078, 5079, 5080, 5081, 5082, 5083, + 5084, 5085, 5086, 5087, 5088, 5089, 5090, 5091, + 5092, 5093, 5094, 5095, 5096, 5097, 5098, 5099, + 5100, 5101, 5102, 5103, 35912, 26356, 36040, 28369, + 20018, 21477, 22865, 21895, 22856, 25078, 30313, 32645, + 34367, 34746, 35064, 37007, 27138, 27931, 28889, 29662, + 33853, 37226, 39409, 20098, 21365, 27396, 29211, 34349, + 40478, 23888, 28651, 34253, 35172, 25289, 33240, 34847, + 24266, 26391, 28010, 29436, 37070, 20358, 20919, 21214, + 25796, 27347, 29200, 30439, 34310, 34396, 36335, 38706, + 39791, 40442, 30860, 31103, 32160, 33737, 37636, 35542, + 22751, 24324, 31840, 32894, 29282, 30922, 36034, 38647, + 22744, 23650, 27155, 28122, 28431, 32047, 32311, 38475, + 21202, 32907, 20956, 20940, 31260, 32190, 33777, 38517, + 35712, 25295, 35582, 20025, 23527, 24594, 29575, 30064, + 21271, 30971, 20415, 24489, 19981, 27852, 25976, 32034, + 21443, 22622, 30465, 33865, 35498, 27578, 27784, 25342, + 33509, 25504, 30053, 20142, 20841, 20937, 26753, 31975, + 33391, 35538, 37327, 21237, 21570, 24300, 26053, 28670, + 31018, 38317, 39530, 40599, 40654, 26310, 27511, 36706, + 24180, 24976, 25088, 25754, 28451, 29001, 29833, 31178, + 32244, 32879, 36646, 34030, 36899, 37706, 21015, 21155, + 21693, 28872, 35010, 24265, 24565, 25467, 27566, 31806, + 29557, 20196, 22265, 23994, 24604, 29618, 29801, 32666, + 32838, 37428, 38646, 38728, 38936, 20363, 31150, 37300, + 38584, 24801, 20102, 20698, 23534, 23615, 26009, 29134, + 30274, 34044, 36988, 26248, 38446, 21129, 26491, 26611, + 27969, 28316, 29705, 30041, 30827, 32016, 39006, 25134, + 38520, 20523, 23833, 28138, 36650, 24459, 24900, 26647, + 38534, 21033, 21519, 23653, 26131, 26446, 26792, 27877, + 29702, 30178, 32633, 35023, 35041, 38626, 21311, 28346, + 21533, 29136, 29848, 34298, 38563, 40023, 40607, 26519, + 28107, 33256, 31520, 31890, 29376, 28825, 35672, 20160, + 33590, 21050, 20999, 24230, 25299, 31958, 23429, 27934, + 26292, 36667, 38477, 24275, 20800, 21952, 22618, 26228, + 20958, 29482, 30410, 31036, 31070, 31077, 31119, 38742, + 31934, 34322, 35576, 36920, 37117, 39151, 39164, 39208, + 40372, 37086, 38583, 20398, 20711, 20813, 21193, 21220, + 21329, 21917, 22022, 22120, 22592, 22696, 23652, 24724, + 24936, 24974, 25074, 25935, 26082, 26257, 26757, 28023, + 28186, 28450, 29038, 29227, 29730, 30865, 31049, 31048, + 31056, 31062, 31117, 31118, 31296, 31361, 31680, 32265, + 32321, 32626, 32773, 33261, 33401, 33879, 35088, 35222, + 35585, 35641, 36051, 36104, 36790, 38627, 38911, 38971, + 24693, 55376, 57070, 33304, 20006, 20917, 20840, 20352, + 20805, 20864, 21191, 21242, 21845, 21913, 21986, 22707, + 22852, 22868, 23138, 23336, 24274, 24281, 24425, 24493, + 24792, 24910, 24840, 24928, 25140, 25540, 25628, 25682, + 25942, 26395, 26454, 28379, 28363, 28702, 30631, 29237, + 29359, 29809, 29958, 30011, 30237, 30239, 30427, 30452, + 30538, 30528, 30924, 31409, 31867, 32091, 32574, 33618, + 33775, 34681, 35137, 35206, 35519, 35531, 35565, 35722, + 36664, 36978, 37273, 37494, 38524, 38875, 38923, 39698, + 55370, 56394, 55370, 56388, 55372, 57301, 15261, 16408, + 16441, 55380, 56905, 55383, 56528, 55391, 57043, 40771, + 40846, 102, 102, 102, 105, 102, 108, 102, + 102, 105, 102, 102, 108, 383, 116, 115, + 116, 1396, 1398, 1396, 1381, 1396, 1387, 1406, + 1398, 1396, 1389, 1497, 1460, 1522, 1463, 1506, + 1492, 1499, 1500, 1501, 1512, 1514, 1513, 1473, + 1513, 1474, 64329, 1473, 64329, 1474, 1488, 1463, + 1488, 1464, 1488, 1468, 1489, 1468, 1490, 1468, + 1491, 1468, 1492, 1468, 1493, 1468, 1494, 1468, + 1496, 1468, 1497, 1468, 1498, 1468, 1499, 1468, + 1500, 1468, 1502, 1468, 1504, 1468, 1505, 1468, + 1507, 1468, 1508, 1468, 1510, 1468, 1511, 1468, + 1512, 1468, 1513, 1468, 1514, 1468, 1493, 1465, + 1489, 1471, 1499, 1471, 1508, 1471, 1488, 1500, + 1649, 1659, 1662, 1664, 1658, 1663, 1657, 1700, + 1702, 1668, 1667, 1670, 1671, 1677, 1676, 1678, + 1672, 1688, 1681, 1705, 1711, 1715, 1713, 1722, + 1723, 1728, 1729, 1726, 1746, 1747, 1709, 1735, + 1734, 1736, 1655, 1739, 1733, 1737, 1744, 1609, + 1574, 1575, 1574, 1749, 1574, 1608, 1574, 1735, + 1574, 1734, 1574, 1736, 1574, 1744, 1574, 1609, + 1740, 1574, 1580, 1574, 1581, 1574, 1605, 1574, + 1610, 1576, 1580, 1576, 1581, 1576, 1582, 1576, + 1605, 1576, 1609, 1576, 1610, 1578, 1580, 1578, + 1581, 1578, 1582, 1578, 1605, 1578, 1609, 1578, + 1610, 1579, 1580, 1579, 1605, 1579, 1609, 1579, + 1610, 1580, 1581, 1580, 1605, 1581, 1580, 1581, + 1605, 1582, 1580, 1582, 1581, 1582, 1605, 1587, + 1580, 1587, 1581, 1587, 1582, 1587, 1605, 1589, + 1581, 1589, 1605, 1590, 1580, 1590, 1581, 1590, + 1582, 1590, 1605, 1591, 1581, 1591, 1605, 1592, + 1605, 1593, 1580, 1593, 1605, 1594, 1580, 1594, + 1605, 1601, 1580, 1601, 1581, 1601, 1582, 1601, + 1605, 1601, 1609, 1601, 1610, 1602, 1581, 1602, + 1605, 1602, 1609, 1602, 1610, 1603, 1575, 1603, + 1580, 1603, 1581, 1603, 1582, 1603, 1604, 1603, + 1605, 1603, 1609, 1603, 1610, 1604, 1580, 1604, + 1581, 1604, 1582, 1604, 1605, 1604, 1609, 1604, + 1610, 1605, 1580, 1605, 1581, 1605, 1582, 1605, + 1605, 1605, 1609, 1605, 1610, 1606, 1580, 1606, + 1581, 1606, 1582, 1606, 1605, 1606, 1609, 1606, + 1610, 1607, 1580, 1607, 1605, 1607, 1609, 1607, + 1610, 1610, 1580, 1610, 1581, 1610, 1582, 1610, + 1605, 1610, 1609, 1610, 1610, 1584, 1648, 1585, + 1648, 1609, 1648, 32, 1612, 1617, 32, 1613, + 1617, 32, 1614, 1617, 32, 1615, 1617, 32, + 1616, 1617, 32, 1617, 1648, 1574, 1585, 1574, + 1586, 1574, 1606, 1576, 1585, 1576, 1586, 1576, + 1606, 1578, 1585, 1578, 1586, 1578, 1606, 1579, + 1585, 1579, 1586, 1579, 1606, 1605, 1575, 1606, + 1585, 1606, 1586, 1606, 1606, 1610, 1585, 1610, + 1586, 1610, 1606, 1574, 1582, 1574, 1607, 1576, + 1607, 1578, 1607, 1589, 1582, 1604, 1607, 1606, + 1607, 1607, 1648, 1610, 1607, 1579, 1607, 1587, + 1607, 1588, 1605, 1588, 1607, 1600, 1614, 1617, + 1600, 1615, 1617, 1600, 1616, 1617, 1591, 1609, + 1591, 1610, 1593, 1609, 1593, 1610, 1594, 1609, + 1594, 1610, 1587, 1609, 1587, 1610, 1588, 1609, + 1588, 1610, 1581, 1609, 1581, 1610, 1580, 1609, + 1580, 1610, 1582, 1609, 1582, 1610, 1589, 1609, + 1589, 1610, 1590, 1609, 1590, 1610, 1588, 1580, + 1588, 1581, 1588, 1582, 1588, 1585, 1587, 1585, + 1589, 1585, 1590, 1585, 1575, 1611, 1578, 1580, + 1605, 1578, 1581, 1580, 1578, 1581, 1605, 1578, + 1582, 1605, 1578, 1605, 1580, 1578, 1605, 1581, + 1578, 1605, 1582, 1580, 1605, 1581, 1581, 1605, + 1610, 1581, 1605, 1609, 1587, 1581, 1580, 1587, + 1580, 1581, 1587, 1580, 1609, 1587, 1605, 1581, + 1587, 1605, 1580, 1587, 1605, 1605, 1589, 1581, + 1581, 1589, 1605, 1605, 1588, 1581, 1605, 1588, + 1580, 1610, 1588, 1605, 1582, 1588, 1605, 1605, + 1590, 1581, 1609, 1590, 1582, 1605, 1591, 1605, + 1581, 1591, 1605, 1605, 1591, 1605, 1610, 1593, + 1580, 1605, 1593, 1605, 1605, 1593, 1605, 1609, + 1594, 1605, 1605, 1594, 1605, 1610, 1594, 1605, + 1609, 1601, 1582, 1605, 1602, 1605, 1581, 1602, + 1605, 1605, 1604, 1581, 1605, 1604, 1581, 1610, + 1604, 1581, 1609, 1604, 1580, 1580, 1604, 1582, + 1605, 1604, 1605, 1581, 1605, 1581, 1580, 1605, + 1581, 1605, 1605, 1581, 1610, 1605, 1580, 1581, + 1605, 1580, 1605, 1605, 1582, 1580, 1605, 1582, + 1605, 1605, 1580, 1582, 1607, 1605, 1580, 1607, + 1605, 1605, 1606, 1581, 1605, 1606, 1581, 1609, + 1606, 1580, 1605, 1606, 1580, 1609, 1606, 1605, + 1610, 1606, 1605, 1609, 1610, 1605, 1605, 1576, + 1582, 1610, 1578, 1580, 1610, 1578, 1580, 1609, + 1578, 1582, 1610, 1578, 1582, 1609, 1578, 1605, + 1610, 1578, 1605, 1609, 1580, 1605, 1610, 1580, + 1581, 1609, 1580, 1605, 1609, 1587, 1582, 1609, + 1589, 1581, 1610, 1588, 1581, 1610, 1590, 1581, + 1610, 1604, 1580, 1610, 1604, 1605, 1610, 1610, + 1581, 1610, 1610, 1580, 1610, 1610, 1605, 1610, + 1605, 1605, 1610, 1602, 1605, 1610, 1606, 1581, + 1610, 1593, 1605, 1610, 1603, 1605, 1610, 1606, + 1580, 1581, 1605, 1582, 1610, 1604, 1580, 1605, + 1603, 1605, 1605, 1580, 1581, 1610, 1581, 1580, + 1610, 1605, 1580, 1610, 1601, 1605, 1610, 1576, + 1581, 1610, 1587, 1582, 1610, 1606, 1580, 1610, + 1589, 1604, 1746, 1602, 1604, 1746, 1575, 1604, + 1604, 1607, 1575, 1603, 1576, 1585, 1605, 1581, + 1605, 1583, 1589, 1604, 1593, 1605, 1585, 1587, + 1608, 1604, 1593, 1604, 1610, 1607, 1608, 1587, + 1604, 1605, 1589, 1604, 1609, 17, 1589, 1604, + 1609, 32, 1575, 1604, 1604, 1607, 32, 1593, + 1604, 1610, 1607, 32, 1608, 1587, 1604, 1605, + 7, 1580, 1604, 32, 1580, 1604, 1575, 1604, + 1607, 1585, 1740, 1575, 1604, 44, 12289, 12290, + 58, 33, 63, 12310, 12311, 8230, 8229, 8212, + 8211, 95, 123, 125, 12308, 12309, 12304, 12305, + 12298, 12299, 12300, 12301, 12302, 12303, 91, 93, + 8254, 35, 38, 42, 45, 60, 62, 92, + 36, 37, 64, 32, 1611, 1600, 1611, 32, + 1612, 32, 1613, 32, 1614, 1600, 1614, 32, + 1615, 1600, 1615, 32, 1616, 1600, 1616, 32, + 1617, 1600, 1617, 32, 1618, 1600, 1618, 1569, + 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, + 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, + 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, + 1594, 1601, 1602, 1603, 1604, 1605, 1606, 1607, + 1608, 1610, 1604, 1570, 1604, 1571, 1604, 1573, + 1604, 1575, 34, 39, 47, 65345, 65346, 65347, + 65348, 65349, 65350, 65351, 65352, 65353, 65354, 65355, + 65356, 65357, 65358, 65359, 65360, 65361, 65362, 65363, + 65364, 65365, 65366, 65367, 65368, 65369, 65370, 94, + 124, 126, 10629, 10630, 12539, 12449, 12451, 12453, + 12455, 12457, 12515, 12517, 12519, 12483, 12540, 12531, + 12441, 12442, 12644, 12593, 12594, 12595, 12596, 12597, + 12598, 12599, 12600, 12601, 12602, 12603, 12604, 12605, + 12606, 12607, 12608, 12609, 12610, 12611, 12612, 12613, + 12614, 12615, 12616, 12617, 12618, 12619, 12620, 12621, + 12622, 12623, 12624, 12625, 12626, 12627, 12628, 12629, + 12630, 12631, 12632, 12633, 12634, 12635, 12636, 12637, + 12638, 12639, 12640, 12641, 12642, 12643, 162, 163, + 172, 175, 166, 165, 8361, 9474, 8592, 8593, + 8594, 8595, 9632, 9675, 55297, 56360, 55297, 56361, + 55297, 56362, 55297, 56363, 55297, 56364, 55297, 56365, + 55297, 56366, 55297, 56367, 55297, 56368, 55297, 56369, + 55297, 56370, 55297, 56371, 55297, 56372, 55297, 56373, + 55297, 56374, 55297, 56375, 55297, 56376, 55297, 56377, + 55297, 56378, 55297, 56379, 55297, 56380, 55297, 56381, + 55297, 56382, 55297, 56383, 55297, 56384, 55297, 56385, + 55297, 56386, 55297, 56387, 55297, 56388, 55297, 56389, + 55297, 56390, 55297, 56391, 55297, 56392, 55297, 56393, + 55297, 56394, 55297, 56395, 55297, 56396, 55297, 56397, + 55297, 56398, 55297, 56399, 55297, 56536, 55297, 56537, + 55297, 56538, 55297, 56539, 55297, 56540, 55297, 56541, + 55297, 56542, 55297, 56543, 55297, 56544, 55297, 56545, + 55297, 56546, 55297, 56547, 55297, 56548, 55297, 56549, + 55297, 56550, 55297, 56551, 55297, 56552, 55297, 56553, + 55297, 56554, 55297, 56555, 55297, 56556, 55297, 56557, + 55297, 56558, 55297, 56559, 55297, 56560, 55297, 56561, + 55297, 56562, 55297, 56563, 55297, 56564, 55297, 56565, + 55297, 56566, 55297, 56567, 55297, 56568, 55297, 56569, + 55297, 56570, 55297, 56571, 55299, 56512, 55299, 56513, + 55299, 56514, 55299, 56515, 55299, 56516, 55299, 56517, + 55299, 56518, 55299, 56519, 55299, 56520, 55299, 56521, + 55299, 56522, 55299, 56523, 55299, 56524, 55299, 56525, + 55299, 56526, 55299, 56527, 55299, 56528, 55299, 56529, + 55299, 56530, 55299, 56531, 55299, 56532, 55299, 56533, + 55299, 56534, 55299, 56535, 55299, 56536, 55299, 56537, + 55299, 56538, 55299, 56539, 55299, 56540, 55299, 56541, + 55299, 56542, 55299, 56543, 55299, 56544, 55299, 56545, + 55299, 56546, 55299, 56547, 55299, 56548, 55299, 56549, + 55299, 56550, 55299, 56551, 55299, 56552, 55299, 56553, + 55299, 56554, 55299, 56555, 55299, 56556, 55299, 56557, + 55299, 56558, 55299, 56559, 55299, 56560, 55299, 56561, + 55299, 56562, 55300, 56473, 55300, 56506, 55300, 56475, + 55300, 56506, 55300, 56485, 55300, 56506, 55300, 56625, + 55300, 56615, 55300, 56626, 55300, 56615, 55300, 57159, + 55300, 57150, 55300, 57159, 55300, 57175, 55301, 56505, + 55301, 56506, 55301, 56505, 55301, 56496, 55301, 56505, + 55301, 56509, 55301, 56760, 55301, 56751, 55301, 56761, + 55301, 56751, 55302, 56512, 55302, 56513, 55302, 56514, + 55302, 56515, 55302, 56516, 55302, 56517, 55302, 56518, + 55302, 56519, 55302, 56520, 55302, 56521, 55302, 56522, + 55302, 56523, 55302, 56524, 55302, 56525, 55302, 56526, + 55302, 56527, 55302, 56528, 55302, 56529, 55302, 56530, + 55302, 56531, 55302, 56532, 55302, 56533, 55302, 56534, + 55302, 56535, 55302, 56536, 55302, 56537, 55302, 56538, + 55302, 56539, 55302, 56540, 55302, 56541, 55302, 56542, + 55302, 56543, 55302, 56629, 55302, 56624, 55323, 56928, + 55323, 56929, 55323, 56930, 55323, 56931, 55323, 56932, + 55323, 56933, 55323, 56934, 55323, 56935, 55323, 56936, + 55323, 56937, 55323, 56938, 55323, 56939, 55323, 56940, + 55323, 56941, 55323, 56942, 55323, 56943, 55323, 56944, + 55323, 56945, 55323, 56946, 55323, 56947, 55323, 56948, + 55323, 56949, 55323, 56950, 55323, 56951, 55323, 56952, + 55323, 56953, 55323, 56954, 55323, 56955, 55323, 56956, + 55323, 56957, 55323, 56958, 55323, 56959, 55348, 56663, + 55348, 56677, 55348, 56664, 55348, 56677, 55348, 56671, + 55348, 56686, 55348, 56671, 55348, 56687, 55348, 56671, + 55348, 56688, 55348, 56671, 55348, 56689, 55348, 56671, + 55348, 56690, 55348, 56761, 55348, 56677, 55348, 56762, + 55348, 56677, 55348, 56763, 55348, 56686, 55348, 56764, + 55348, 56686, 55348, 56763, 55348, 56687, 55348, 56764, + 55348, 56687, 305, 567, 913, 914, 916, 917, + 918, 919, 921, 922, 923, 924, 925, 926, + 927, 929, 1012, 932, 934, 935, 936, 8711, + 8706, 1013, 977, 1008, 981, 1009, 982, 988, + 55354, 56610, 55354, 56611, 55354, 56612, 55354, 56613, + 55354, 56614, 55354, 56615, 55354, 56616, 55354, 56617, + 55354, 56618, 55354, 56619, 55354, 56620, 55354, 56621, + 55354, 56622, 55354, 56623, 55354, 56624, 55354, 56625, + 55354, 56626, 55354, 56627, 55354, 56628, 55354, 56629, + 55354, 56630, 55354, 56631, 55354, 56632, 55354, 56633, + 55354, 56634, 55354, 56635, 55354, 56636, 55354, 56637, + 55354, 56638, 55354, 56639, 55354, 56640, 55354, 56641, + 55354, 56642, 55354, 56643, 1646, 1697, 1647, 48, + 46, 48, 44, 49, 44, 50, 44, 51, + 44, 52, 44, 53, 44, 54, 44, 55, + 44, 56, 44, 57, 44, 40, 65, 41, + 40, 66, 41, 40, 67, 41, 40, 68, + 41, 40, 69, 41, 40, 70, 41, 40, + 71, 41, 40, 72, 41, 40, 73, 41, + 40, 74, 41, 40, 75, 41, 40, 76, + 41, 40, 77, 41, 40, 78, 41, 40, + 79, 41, 40, 80, 41, 40, 81, 41, + 40, 82, 41, 40, 83, 41, 40, 84, + 41, 40, 85, 41, 40, 86, 41, 40, + 87, 41, 40, 88, 41, 40, 89, 41, + 40, 90, 41, 12308, 83, 12309, 67, 68, + 87, 90, 72, 86, 83, 68, 83, 83, + 80, 80, 86, 87, 67, 77, 67, 77, + 68, 77, 82, 68, 74, 12411, 12363, 12467, + 12467, 23383, 21452, 12487, 22810, 35299, 20132, 26144, + 28961, 21069, 24460, 20877, 26032, 21021, 32066, 36009, + 22768, 21561, 28436, 25237, 25429, 36938, 25351, 25171, + 31105, 31354, 21512, 28288, 30003, 21106, 21942, 37197, + 12308, 26412, 12309, 12308, 19977, 12309, 12308, 20108, + 12309, 12308, 23433, 12309, 12308, 28857, 12309, 12308, + 25171, 12309, 12308, 30423, 12309, 12308, 21213, 12309, + 12308, 25943, 12309, 24471, 21487, 20029, 20024, 20033, + 55360, 56610, 20320, 20411, 20482, 20602, 20633, 20687, + 13470, 55361, 56890, 20820, 20836, 20855, 55361, 56604, + 13497, 20839, 55361, 56651, 20887, 20900, 20172, 20908, + 55396, 56799, 20995, 13535, 21051, 21062, 21111, 13589, + 21253, 21254, 21321, 21338, 21363, 21373, 21375, 55362, + 56876, 28784, 21450, 21471, 55362, 57187, 21483, 21489, + 21510, 21662, 21560, 21576, 21608, 21666, 21750, 21776, + 21843, 21859, 21892, 21931, 21939, 21954, 22294, 22295, + 22097, 22132, 22766, 22478, 22516, 22541, 22411, 22578, + 22577, 22700, 55365, 56548, 22770, 22775, 22790, 22818, + 22882, 55365, 57000, 55365, 57066, 23020, 23067, 23079, + 23000, 23142, 14062, 14076, 23304, 23358, 55366, 56776, + 23491, 23512, 23539, 55366, 57112, 23551, 23558, 24403, + 14209, 23648, 23744, 23693, 55367, 56804, 23875, 55367, + 56806, 23918, 23915, 23932, 24033, 24034, 14383, 24061, + 24104, 24125, 24169, 14434, 55368, 56707, 14460, 24240, + 24243, 24246, 55400, 57234, 55368, 57137, 33281, 24354, + 14535, 55372, 57016, 55384, 56794, 24418, 24427, 14563, + 24474, 24525, 24535, 24569, 24705, 14650, 14620, 55369, + 57044, 24775, 24904, 24908, 24954, 25010, 24996, 25007, + 25054, 25104, 25115, 25181, 25265, 25300, 25424, 55370, + 57100, 25405, 25340, 25448, 25475, 25572, 55370, 57329, + 25634, 25541, 25513, 14894, 25705, 25726, 25757, 25719, + 14956, 25964, 55372, 56330, 26083, 26360, 26185, 15129, + 15112, 15076, 20882, 20885, 26368, 26268, 32941, 17369, + 26401, 26462, 26451, 55372, 57283, 15177, 26618, 26501, + 26706, 55373, 56429, 26766, 26655, 26900, 26946, 27043, + 27114, 27304, 55373, 56995, 27355, 15384, 27425, 55374, + 56487, 27476, 15438, 27506, 27551, 27579, 55374, 56973, + 55367, 56587, 55374, 57082, 27726, 55375, 56508, 27839, + 27853, 27751, 27926, 27966, 28009, 28024, 28037, 55375, + 56606, 27956, 28207, 28270, 15667, 28359, 55375, 57041, + 28153, 28526, 55375, 57182, 55375, 57230, 28614, 28729, + 28699, 15766, 28746, 28797, 28791, 28845, 55361, 56613, + 28997, 55376, 56931, 29084, 55376, 57259, 29224, 29264, + 55377, 56840, 29312, 29333, 55377, 57141, 55378, 56340, + 29562, 29579, 16044, 29605, 16056, 29767, 29788, 29829, + 29898, 16155, 29988, 55379, 56374, 30014, 55379, 56466, + 55368, 56735, 30224, 55379, 57249, 55379, 57272, 55380, + 56388, 16380, 16392, 55380, 56563, 55380, 56562, 55380, + 56601, 55380, 56627, 30494, 30495, 30603, 16454, 16534, + 55381, 56349, 30798, 16611, 55381, 56870, 55381, 56986, + 55381, 57029, 31211, 16687, 31306, 31311, 55382, 56700, + 55382, 56999, 31470, 16898, 55382, 57259, 31686, 31689, + 16935, 55383, 56448, 31954, 17056, 31976, 31971, 32000, + 55383, 57222, 32099, 17153, 32199, 32258, 32325, 17204, + 55384, 56872, 55384, 56903, 17241, 55384, 57049, 32634, + 55384, 57150, 32661, 32762, 55385, 56538, 55385, 56611, + 32864, 55385, 56744, 32880, 55372, 57183, 17365, 32946, + 33027, 17419, 33086, 23221, 55385, 57255, 55385, 57269, + 55372, 57235, 55372, 57244, 33284, 36766, 17515, 33425, + 33419, 33437, 21171, 33457, 33459, 33469, 33510, 55386, + 57148, 33565, 33635, 33709, 33571, 33725, 33767, 33619, + 33738, 33740, 33756, 55387, 56374, 55387, 56683, 55387, + 56533, 17707, 34033, 34035, 34070, 55388, 57290, 34148, + 55387, 57132, 17757, 17761, 55387, 57265, 55388, 56530, + 17771, 34384, 34407, 34409, 34473, 34440, 34574, 34530, + 34600, 34667, 34694, 17879, 34785, 34817, 17913, 34912, + 55389, 56935, 35031, 35038, 17973, 35066, 13499, 55390, + 56494, 55390, 56678, 18110, 18119, 35488, 55391, 56488, + 36011, 36033, 36123, 36215, 55391, 57135, 55362, 56324, + 36299, 36284, 36336, 55362, 56542, 36564, 55393, 56786, + 55393, 56813, 37012, 37105, 37137, 55393, 57134, 37147, + 37432, 37591, 37592, 37500, 37881, 37909, 55394, 57338, + 38283, 18837, 38327, 55395, 56695, 18918, 38595, 23986, + 38691, 55396, 56645, 55396, 56858, 19054, 19062, 38880, + 55397, 56330, 19122, 55397, 56470, 38953, 55397, 56758, + 39138, 19251, 39209, 39335, 39362, 39422, 19406, 55398, + 57136, 40000, 40189, 19662, 19693, 40295, 55400, 56526, + 19704, 55400, 56581, 55400, 56846, 55400, 56977, 19798, + 40702, 40709, 40719, 40726, 55401, 56832, 170, 186, + 7838, 192, 193, 194, 195, 196, 199, 200, + 201, 202, 203, 204, 205, 206, 207, 208, + 209, 210, 211, 212, 213, 214, 216, 217, + 218, 219, 220, 221, 222, 376, 256, 258, + 260, 262, 264, 266, 268, 270, 272, 274, + 276, 278, 280, 282, 284, 286, 288, 290, + 292, 296, 298, 300, 302, 306, 308, 310, + 312, 313, 315, 317, 319, 321, 323, 325, + 327, 329, 330, 332, 334, 336, 338, 340, + 342, 344, 346, 348, 350, 352, 354, 356, + 358, 360, 362, 364, 366, 368, 370, 372, + 374, 377, 379, 381, 579, 386, 388, 391, + 395, 397, 401, 502, 408, 573, 411, 544, + 416, 418, 420, 423, 426, 428, 431, 435, + 437, 440, 442, 444, 446, 503, 453, 452, + 456, 455, 459, 458, 461, 463, 465, 467, + 469, 471, 473, 475, 478, 480, 482, 484, + 486, 488, 490, 492, 494, 496, 498, 497, + 500, 504, 506, 508, 510, 512, 514, 516, + 518, 520, 522, 524, 526, 528, 530, 532, + 534, 536, 538, 540, 542, 545, 548, 550, + 552, 554, 556, 558, 560, 562, 564, 565, + 566, 568, 569, 571, 11390, 11391, 577, 582, + 584, 586, 588, 590, 11375, 11373, 11376, 385, + 390, 393, 394, 600, 399, 602, 42923, 605, + 606, 403, 42924, 610, 404, 612, 42893, 42922, + 615, 407, 406, 42926, 11362, 42925, 622, 412, + 11374, 413, 415, 630, 631, 634, 636, 11364, + 638, 639, 422, 42949, 425, 644, 645, 646, + 42929, 430, 580, 433, 434, 581, 654, 655, + 439, 659, 662, 663, 664, 665, 666, 667, + 668, 42930, 42928, 672, 673, 674, 675, 676, + 677, 678, 679, 680, 681, 682, 683, 684, + 685, 686, 687, 688, 689, 690, 691, 692, + 693, 694, 695, 696, 704, 705, 736, 737, + 738, 739, 740, 880, 882, 886, 890, 1021, + 1022, 1023, 938, 939, 978, 979, 980, 975, + 984, 986, 990, 992, 994, 996, 998, 1000, + 1002, 1004, 1006, 1017, 895, 1015, 1018, 1020, + 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, + 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, + 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, + 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, + 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, + 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, + 1120, 1122, 1124, 1126, 1128, 1130, 1132, 1134, + 1136, 1138, 1140, 1142, 1144, 1146, 1148, 1150, + 1152, 1162, 1164, 1166, 1168, 1170, 1172, 1174, + 1176, 1178, 1180, 1182, 1184, 1186, 1188, 1190, + 1192, 1194, 1196, 1198, 1200, 1202, 1204, 1206, + 1208, 1210, 1212, 1214, 1217, 1219, 1221, 1223, + 1225, 1227, 1229, 1216, 1232, 1234, 1236, 1238, + 1240, 1242, 1244, 1246, 1248, 1250, 1252, 1254, + 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, + 1272, 1274, 1276, 1278, 1280, 1282, 1284, 1286, + 1288, 1290, 1292, 1294, 1296, 1298, 1300, 1302, + 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, + 1320, 1322, 1324, 1326, 1376, 1329, 1330, 1331, + 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, + 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, + 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, + 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, + 1364, 1365, 1366, 1415, 1416, 7312, 7313, 7314, + 7315, 7316, 7317, 7318, 7319, 7320, 7321, 7322, + 7323, 7324, 7325, 7326, 7327, 7328, 7329, 7330, + 7331, 7332, 7333, 7334, 7335, 7336, 7337, 7338, + 7339, 7340, 7341, 7342, 7343, 7344, 7345, 7346, + 7347, 7348, 7349, 7350, 7351, 7352, 7353, 7354, + 7357, 7358, 7359, 43888, 43889, 43890, 43891, 43892, + 43893, 43894, 43895, 43896, 43897, 43898, 43899, 43900, + 43901, 43902, 43903, 43904, 43905, 43906, 43907, 43908, + 43909, 43910, 43911, 43912, 43913, 43914, 43915, 43916, + 43917, 43918, 43919, 43920, 43921, 43922, 43923, 43924, + 43925, 43926, 43927, 43928, 43929, 43930, 43931, 43932, + 43933, 43934, 43935, 43936, 43937, 43938, 43939, 43940, + 43941, 43942, 43943, 43944, 43945, 43946, 43947, 43948, + 43949, 43950, 43951, 43952, 43953, 43954, 43955, 43956, + 43957, 43958, 43959, 43960, 43961, 43962, 43963, 43964, + 43965, 43966, 43967, 5112, 5113, 5114, 5115, 5116, + 5117, 42570, 7424, 7425, 7427, 7428, 7429, 7430, + 7431, 7432, 7433, 7434, 7435, 7436, 7437, 7438, + 7439, 7440, 7441, 7442, 7443, 7444, 7445, 7448, + 7449, 7450, 7451, 7454, 7455, 7456, 7457, 7458, + 7459, 7460, 7462, 7463, 7464, 7465, 7466, 7467, + 7468, 7469, 7470, 7471, 7472, 7473, 7474, 7475, + 7476, 7477, 7478, 7479, 7480, 7481, 7482, 7483, + 7484, 7485, 7486, 7487, 7488, 7489, 7490, 7491, + 7492, 7493, 7494, 7495, 7496, 7497, 7498, 7499, + 7500, 7501, 7502, 7503, 7504, 7505, 7506, 7507, + 7508, 7509, 7510, 7511, 7512, 7513, 7514, 7515, + 7516, 7517, 7518, 7519, 7520, 7521, 7522, 7523, + 7524, 7525, 7526, 7527, 7528, 7529, 7530, 7531, + 7532, 7533, 7534, 7535, 7536, 7537, 7538, 7539, + 7540, 7541, 7542, 7543, 7544, 42877, 7546, 7548, + 11363, 7550, 7551, 7552, 7553, 7554, 7555, 7556, + 7558, 7559, 7560, 7561, 7562, 7563, 7564, 7565, + 42950, 7567, 7568, 7569, 7570, 7571, 7572, 7573, + 7574, 7575, 7576, 7577, 7578, 7579, 7580, 7581, + 7582, 7583, 7584, 7585, 7586, 7587, 7588, 7589, + 7590, 7591, 7592, 7593, 7594, 7595, 7596, 7597, + 7598, 7599, 7600, 7601, 7602, 7603, 7604, 7605, + 7606, 7607, 7608, 7609, 7610, 7611, 7612, 7613, + 7614, 7615, 7680, 7682, 7684, 7686, 7688, 7690, + 7692, 7694, 7696, 7698, 7700, 7702, 7704, 7706, + 7708, 7710, 7712, 7714, 7716, 7718, 7720, 7722, + 7724, 7726, 7728, 7730, 7732, 7734, 7736, 7738, + 7740, 7742, 7744, 7746, 7748, 7750, 7752, 7754, + 7756, 7758, 7760, 7762, 7764, 7766, 7768, 7770, + 7772, 7774, 7776, 7778, 7780, 7782, 7784, 7786, + 7788, 7790, 7792, 7794, 7796, 7798, 7800, 7802, + 7804, 7806, 7808, 7810, 7812, 7814, 7816, 7818, + 7820, 7822, 7824, 7826, 7828, 7830, 7831, 7832, + 7833, 7834, 7836, 7837, 223, 7839, 7840, 7842, + 7844, 7846, 7848, 7850, 7852, 7854, 7856, 7858, + 7860, 7862, 7864, 7866, 7868, 7870, 7872, 7874, + 7876, 7878, 7880, 7882, 7884, 7886, 7888, 7890, + 7892, 7894, 7896, 7898, 7900, 7902, 7904, 7906, + 7908, 7910, 7912, 7914, 7916, 7918, 7920, 7922, + 7924, 7926, 7928, 7930, 7932, 7934, 7944, 7945, + 7946, 7947, 7948, 7949, 7950, 7951, 7960, 7961, + 7962, 7963, 7964, 7965, 7976, 7977, 7978, 7979, + 7980, 7981, 7982, 7983, 7992, 7993, 7994, 7995, + 7996, 7997, 7998, 7999, 8008, 8009, 8010, 8011, + 8012, 8013, 8016, 8025, 8018, 8027, 8020, 8029, + 8022, 8031, 8040, 8041, 8042, 8043, 8044, 8045, + 8046, 8047, 8122, 8123, 8136, 8137, 8138, 8139, + 8154, 8155, 8184, 8185, 8170, 8171, 8186, 8187, + 8072, 8073, 8074, 8075, 8076, 8077, 8078, 8079, + 8064, 8065, 8066, 8067, 8068, 8069, 8070, 8071, + 8088, 8089, 8090, 8091, 8092, 8093, 8094, 8095, + 8080, 8081, 8082, 8083, 8084, 8085, 8086, 8087, + 8104, 8105, 8106, 8107, 8108, 8109, 8110, 8111, + 8096, 8097, 8098, 8099, 8100, 8101, 8102, 8103, + 8120, 8121, 8114, 8124, 8116, 8118, 8119, 8115, + 8130, 8140, 8132, 8134, 8135, 8131, 8152, 8153, + 8146, 8147, 8150, 8151, 8168, 8169, 8162, 8163, + 8164, 8172, 8166, 8167, 8178, 8188, 8180, 8182, + 8183, 8179, 8305, 8319, 8336, 8337, 8338, 8339, + 8340, 8341, 8342, 8343, 8344, 8345, 8346, 8347, + 8348, 8450, 8455, 8458, 8459, 8460, 8461, 8462, + 8463, 8464, 8465, 8466, 8467, 8469, 8473, 8474, + 8475, 8476, 8477, 8484, 8488, 8492, 8493, 8495, + 8496, 8497, 8499, 8500, 8505, 8508, 8509, 8510, + 8511, 8517, 8518, 8519, 8520, 8521, 8498, 8544, + 8545, 8546, 8547, 8548, 8549, 8550, 8551, 8552, + 8553, 8554, 8555, 8556, 8557, 8558, 8559, 8579, + 9398, 9399, 9400, 9401, 9402, 9403, 9404, 9405, + 9406, 9407, 9408, 9409, 9410, 9411, 9412, 9413, + 9414, 9415, 9416, 9417, 9418, 9419, 9420, 9421, + 9422, 9423, 11264, 11265, 11266, 11267, 11268, 11269, + 11270, 11271, 11272, 11273, 11274, 11275, 11276, 11277, + 11278, 11279, 11280, 11281, 11282, 11283, 11284, 11285, + 11286, 11287, 11288, 11289, 11290, 11291, 11292, 11293, + 11294, 11295, 11296, 11297, 11298, 11299, 11300, 11301, + 11302, 11303, 11304, 11305, 11306, 11307, 11308, 11309, + 11310, 11360, 570, 574, 11367, 11369, 11371, 11377, + 11378, 11380, 11381, 11383, 11384, 11385, 11386, 11387, + 11388, 11389, 11392, 11394, 11396, 11398, 11400, 11402, + 11404, 11406, 11408, 11410, 11412, 11414, 11416, 11418, + 11420, 11422, 11424, 11426, 11428, 11430, 11432, 11434, + 11436, 11438, 11440, 11442, 11444, 11446, 11448, 11450, + 11452, 11454, 11456, 11458, 11460, 11462, 11464, 11466, + 11468, 11470, 11472, 11474, 11476, 11478, 11480, 11482, + 11484, 11486, 11488, 11490, 11492, 11499, 11501, 11506, 4256, 4257, 4258, 4259, 4260, 4261, 4262, 4263, 4264, 4265, 4266, 4267, 4268, 4269, 4270, 4271, 4272, 4273, 4274, 4275, 4276, 4277, 4278, 4279, @@ -1115,68 +1182,341 @@ const utf8proc_uint16_t utf8proc_sequences[] = { 42578, 42580, 42582, 42584, 42586, 42588, 42590, 42592, 42594, 42596, 42598, 42600, 42602, 42604, 42624, 42626, 42628, 42630, 42632, 42634, 42636, 42638, 42640, 42642, - 42644, 42646, 42648, 42650, 42786, 42788, 42790, 42792, - 42794, 42796, 42798, 42802, 42804, 42806, 42808, 42810, - 42812, 42814, 42816, 42818, 42820, 42822, 42824, 42826, - 42828, 42830, 42832, 42834, 42836, 42838, 42840, 42842, - 42844, 42846, 42848, 42850, 42852, 42854, 42856, 42858, - 42860, 42862, 42873, 42875, 42878, 42880, 42882, 42884, - 42886, 42891, 42896, 42898, 42902, 42904, 42906, 42908, - 42910, 42912, 42914, 42916, 42918, 42920, 42932, 42934, - 42931, 65313, 65314, 65315, 65316, 65317, 65318, 65319, - 65320, 65321, 65322, 65323, 65324, 65325, 65326, 65327, - 65328, 65329, 65330, 65331, 65332, 65333, 65334, 65335, - 65336, 65337, 65338, 55297, 56320, 55297, 56321, 55297, - 56322, 55297, 56323, 55297, 56324, 55297, 56325, 55297, - 56326, 55297, 56327, 55297, 56328, 55297, 56329, 55297, - 56330, 55297, 56331, 55297, 56332, 55297, 56333, 55297, - 56334, 55297, 56335, 55297, 56336, 55297, 56337, 55297, - 56338, 55297, 56339, 55297, 56340, 55297, 56341, 55297, - 56342, 55297, 56343, 55297, 56344, 55297, 56345, 55297, - 56346, 55297, 56347, 55297, 56348, 55297, 56349, 55297, - 56350, 55297, 56351, 55297, 56352, 55297, 56353, 55297, - 56354, 55297, 56355, 55297, 56356, 55297, 56357, 55297, - 56358, 55297, 56359, 55297, 56496, 55297, 56497, 55297, - 56498, 55297, 56499, 55297, 56500, 55297, 56501, 55297, - 56502, 55297, 56503, 55297, 56504, 55297, 56505, 55297, - 56506, 55297, 56507, 55297, 56508, 55297, 56509, 55297, - 56510, 55297, 56511, 55297, 56512, 55297, 56513, 55297, - 56514, 55297, 56515, 55297, 56516, 55297, 56517, 55297, - 56518, 55297, 56519, 55297, 56520, 55297, 56521, 55297, - 56522, 55297, 56523, 55297, 56524, 55297, 56525, 55297, - 56526, 55297, 56527, 55297, 56528, 55297, 56529, 55297, - 56530, 55297, 56531, 55299, 56448, 55299, 56449, 55299, - 56450, 55299, 56451, 55299, 56452, 55299, 56453, 55299, - 56454, 55299, 56455, 55299, 56456, 55299, 56457, 55299, - 56458, 55299, 56459, 55299, 56460, 55299, 56461, 55299, - 56462, 55299, 56463, 55299, 56464, 55299, 56465, 55299, - 56466, 55299, 56467, 55299, 56468, 55299, 56469, 55299, - 56470, 55299, 56471, 55299, 56472, 55299, 56473, 55299, - 56474, 55299, 56475, 55299, 56476, 55299, 56477, 55299, - 56478, 55299, 56479, 55299, 56480, 55299, 56481, 55299, - 56482, 55299, 56483, 55299, 56484, 55299, 56485, 55299, - 56486, 55299, 56487, 55299, 56488, 55299, 56489, 55299, - 56490, 55299, 56491, 55299, 56492, 55299, 56493, 55299, - 56494, 55299, 56495, 55299, 56496, 55299, 56497, 55299, - 56498, 55302, 56480, 55302, 56481, 55302, 56482, 55302, - 56483, 55302, 56484, 55302, 56485, 55302, 56486, 55302, - 56487, 55302, 56488, 55302, 56489, 55302, 56490, 55302, - 56491, 55302, 56492, 55302, 56493, 55302, 56494, 55302, - 56495, 55302, 56496, 55302, 56497, 55302, 56498, 55302, - 56499, 55302, 56500, 55302, 56501, 55302, 56502, 55302, - 56503, 55302, 56504, 55302, 56505, 55302, 56506, 55302, - 56507, 55302, 56508, 55302, 56509, 55302, 56510, 55302, - 56511, 55354, 56576, 55354, 56577, 55354, 56578, 55354, - 56579, 55354, 56580, 55354, 56581, 55354, 56582, 55354, - 56583, 55354, 56584, 55354, 56585, 55354, 56586, 55354, - 56587, 55354, 56588, 55354, 56589, 55354, 56590, 55354, - 56591, 55354, 56592, 55354, 56593, 55354, 56594, 55354, - 56595, 55354, 56596, 55354, 56597, 55354, 56598, 55354, - 56599, 55354, 56600, 55354, 56601, 55354, 56602, 55354, - 56603, 55354, 56604, 55354, 56605, 55354, 56606, 55354, - 56607, 55354, 56608, 55354, 56609, }; + 42644, 42646, 42648, 42650, 42652, 42653, 42786, 42788, + 42790, 42792, 42794, 42796, 42798, 42800, 42801, 42802, + 42804, 42806, 42808, 42810, 42812, 42814, 42816, 42818, + 42820, 42822, 42824, 42826, 42828, 42830, 42832, 42834, + 42836, 42838, 42840, 42842, 42844, 42846, 42848, 42850, + 42852, 42854, 42856, 42858, 42860, 42862, 42864, 42865, + 42866, 42867, 42868, 42869, 42870, 42871, 42872, 42873, + 42875, 42878, 42880, 42882, 42884, 42886, 42891, 42894, + 42896, 42898, 42948, 42901, 42902, 42904, 42906, 42908, + 42910, 42912, 42914, 42916, 42918, 42920, 42927, 42932, + 42934, 42936, 42938, 42940, 42942, 42946, 42951, 42953, + 42997, 43000, 43001, 43002, 43824, 43825, 43826, 43827, + 43828, 43829, 43830, 43832, 43833, 43834, 43835, 43836, + 43837, 43838, 43839, 43840, 43841, 43842, 43843, 43844, + 43845, 43846, 43847, 43848, 43849, 43850, 43851, 43852, + 43853, 43854, 43855, 43856, 43857, 42931, 43860, 43861, + 43862, 43863, 43864, 43865, 43866, 43868, 43869, 43870, + 43871, 43872, 43873, 43874, 43875, 43876, 43877, 43878, + 43879, 43880, 64256, 64257, 64258, 64259, 64260, 64261, + 64262, 64275, 64276, 64277, 64278, 64279, 65313, 65314, + 65315, 65316, 65317, 65318, 65319, 65320, 65321, 65322, + 65323, 65324, 65325, 65326, 65327, 65328, 65329, 65330, + 65331, 65332, 65333, 65334, 65335, 65336, 65337, 65338, + 55297, 56320, 55297, 56321, 55297, 56322, 55297, 56323, + 55297, 56324, 55297, 56325, 55297, 56326, 55297, 56327, + 55297, 56328, 55297, 56329, 55297, 56330, 55297, 56331, + 55297, 56332, 55297, 56333, 55297, 56334, 55297, 56335, + 55297, 56336, 55297, 56337, 55297, 56338, 55297, 56339, + 55297, 56340, 55297, 56341, 55297, 56342, 55297, 56343, + 55297, 56344, 55297, 56345, 55297, 56346, 55297, 56347, + 55297, 56348, 55297, 56349, 55297, 56350, 55297, 56351, + 55297, 56352, 55297, 56353, 55297, 56354, 55297, 56355, + 55297, 56356, 55297, 56357, 55297, 56358, 55297, 56359, + 55297, 56496, 55297, 56497, 55297, 56498, 55297, 56499, + 55297, 56500, 55297, 56501, 55297, 56502, 55297, 56503, + 55297, 56504, 55297, 56505, 55297, 56506, 55297, 56507, + 55297, 56508, 55297, 56509, 55297, 56510, 55297, 56511, + 55297, 56512, 55297, 56513, 55297, 56514, 55297, 56515, + 55297, 56516, 55297, 56517, 55297, 56518, 55297, 56519, + 55297, 56520, 55297, 56521, 55297, 56522, 55297, 56523, + 55297, 56524, 55297, 56525, 55297, 56526, 55297, 56527, + 55297, 56528, 55297, 56529, 55297, 56530, 55297, 56531, + 55299, 56448, 55299, 56449, 55299, 56450, 55299, 56451, + 55299, 56452, 55299, 56453, 55299, 56454, 55299, 56455, + 55299, 56456, 55299, 56457, 55299, 56458, 55299, 56459, + 55299, 56460, 55299, 56461, 55299, 56462, 55299, 56463, + 55299, 56464, 55299, 56465, 55299, 56466, 55299, 56467, + 55299, 56468, 55299, 56469, 55299, 56470, 55299, 56471, + 55299, 56472, 55299, 56473, 55299, 56474, 55299, 56475, + 55299, 56476, 55299, 56477, 55299, 56478, 55299, 56479, + 55299, 56480, 55299, 56481, 55299, 56482, 55299, 56483, + 55299, 56484, 55299, 56485, 55299, 56486, 55299, 56487, + 55299, 56488, 55299, 56489, 55299, 56490, 55299, 56491, + 55299, 56492, 55299, 56493, 55299, 56494, 55299, 56495, + 55299, 56496, 55299, 56497, 55299, 56498, 55302, 56480, + 55302, 56481, 55302, 56482, 55302, 56483, 55302, 56484, + 55302, 56485, 55302, 56486, 55302, 56487, 55302, 56488, + 55302, 56489, 55302, 56490, 55302, 56491, 55302, 56492, + 55302, 56493, 55302, 56494, 55302, 56495, 55302, 56496, + 55302, 56497, 55302, 56498, 55302, 56499, 55302, 56500, + 55302, 56501, 55302, 56502, 55302, 56503, 55302, 56504, + 55302, 56505, 55302, 56506, 55302, 56507, 55302, 56508, + 55302, 56509, 55302, 56510, 55302, 56511, 55323, 56896, + 55323, 56897, 55323, 56898, 55323, 56899, 55323, 56900, + 55323, 56901, 55323, 56902, 55323, 56903, 55323, 56904, + 55323, 56905, 55323, 56906, 55323, 56907, 55323, 56908, + 55323, 56909, 55323, 56910, 55323, 56911, 55323, 56912, + 55323, 56913, 55323, 56914, 55323, 56915, 55323, 56916, + 55323, 56917, 55323, 56918, 55323, 56919, 55323, 56920, + 55323, 56921, 55323, 56922, 55323, 56923, 55323, 56924, + 55323, 56925, 55323, 56926, 55323, 56927, 55349, 56320, + 55349, 56321, 55349, 56322, 55349, 56323, 55349, 56324, + 55349, 56325, 55349, 56326, 55349, 56327, 55349, 56328, + 55349, 56329, 55349, 56330, 55349, 56331, 55349, 56332, + 55349, 56333, 55349, 56334, 55349, 56335, 55349, 56336, + 55349, 56337, 55349, 56338, 55349, 56339, 55349, 56340, + 55349, 56341, 55349, 56342, 55349, 56343, 55349, 56344, + 55349, 56345, 55349, 56346, 55349, 56347, 55349, 56348, + 55349, 56349, 55349, 56350, 55349, 56351, 55349, 56352, + 55349, 56353, 55349, 56354, 55349, 56355, 55349, 56356, + 55349, 56357, 55349, 56358, 55349, 56359, 55349, 56360, + 55349, 56361, 55349, 56362, 55349, 56363, 55349, 56364, + 55349, 56365, 55349, 56366, 55349, 56367, 55349, 56368, + 55349, 56369, 55349, 56370, 55349, 56371, 55349, 56372, + 55349, 56373, 55349, 56374, 55349, 56375, 55349, 56376, + 55349, 56377, 55349, 56378, 55349, 56379, 55349, 56380, + 55349, 56381, 55349, 56382, 55349, 56383, 55349, 56384, + 55349, 56385, 55349, 56386, 55349, 56387, 55349, 56388, + 55349, 56389, 55349, 56390, 55349, 56391, 55349, 56392, + 55349, 56393, 55349, 56394, 55349, 56395, 55349, 56396, + 55349, 56397, 55349, 56398, 55349, 56399, 55349, 56400, + 55349, 56401, 55349, 56402, 55349, 56403, 55349, 56404, + 55349, 56406, 55349, 56407, 55349, 56408, 55349, 56409, + 55349, 56410, 55349, 56411, 55349, 56412, 55349, 56413, + 55349, 56414, 55349, 56415, 55349, 56416, 55349, 56417, + 55349, 56418, 55349, 56419, 55349, 56420, 55349, 56421, + 55349, 56422, 55349, 56423, 55349, 56424, 55349, 56425, + 55349, 56426, 55349, 56427, 55349, 56428, 55349, 56429, + 55349, 56430, 55349, 56431, 55349, 56432, 55349, 56433, + 55349, 56434, 55349, 56435, 55349, 56436, 55349, 56437, + 55349, 56438, 55349, 56439, 55349, 56440, 55349, 56441, + 55349, 56442, 55349, 56443, 55349, 56444, 55349, 56445, + 55349, 56446, 55349, 56447, 55349, 56448, 55349, 56449, + 55349, 56450, 55349, 56451, 55349, 56452, 55349, 56453, + 55349, 56454, 55349, 56455, 55349, 56456, 55349, 56457, + 55349, 56458, 55349, 56459, 55349, 56460, 55349, 56461, + 55349, 56462, 55349, 56463, 55349, 56464, 55349, 56465, + 55349, 56466, 55349, 56467, 55349, 56468, 55349, 56469, + 55349, 56470, 55349, 56471, 55349, 56472, 55349, 56473, + 55349, 56474, 55349, 56475, 55349, 56476, 55349, 56478, + 55349, 56479, 55349, 56482, 55349, 56485, 55349, 56486, + 55349, 56489, 55349, 56490, 55349, 56491, 55349, 56492, + 55349, 56494, 55349, 56495, 55349, 56496, 55349, 56497, + 55349, 56498, 55349, 56499, 55349, 56500, 55349, 56501, + 55349, 56502, 55349, 56503, 55349, 56504, 55349, 56505, + 55349, 56507, 55349, 56509, 55349, 56510, 55349, 56511, + 55349, 56512, 55349, 56513, 55349, 56514, 55349, 56515, + 55349, 56517, 55349, 56518, 55349, 56519, 55349, 56520, + 55349, 56521, 55349, 56522, 55349, 56523, 55349, 56524, + 55349, 56525, 55349, 56526, 55349, 56527, 55349, 56528, + 55349, 56529, 55349, 56530, 55349, 56531, 55349, 56532, + 55349, 56533, 55349, 56534, 55349, 56535, 55349, 56536, + 55349, 56537, 55349, 56538, 55349, 56539, 55349, 56540, + 55349, 56541, 55349, 56542, 55349, 56543, 55349, 56544, + 55349, 56545, 55349, 56546, 55349, 56547, 55349, 56548, + 55349, 56549, 55349, 56550, 55349, 56551, 55349, 56552, + 55349, 56553, 55349, 56554, 55349, 56555, 55349, 56556, + 55349, 56557, 55349, 56558, 55349, 56559, 55349, 56560, + 55349, 56561, 55349, 56562, 55349, 56563, 55349, 56564, + 55349, 56565, 55349, 56566, 55349, 56567, 55349, 56568, + 55349, 56569, 55349, 56570, 55349, 56571, 55349, 56572, + 55349, 56573, 55349, 56574, 55349, 56575, 55349, 56576, + 55349, 56577, 55349, 56578, 55349, 56579, 55349, 56580, + 55349, 56581, 55349, 56583, 55349, 56584, 55349, 56585, + 55349, 56586, 55349, 56589, 55349, 56590, 55349, 56591, + 55349, 56592, 55349, 56593, 55349, 56594, 55349, 56595, + 55349, 56596, 55349, 56598, 55349, 56599, 55349, 56600, + 55349, 56601, 55349, 56602, 55349, 56603, 55349, 56604, + 55349, 56606, 55349, 56607, 55349, 56608, 55349, 56609, + 55349, 56610, 55349, 56611, 55349, 56612, 55349, 56613, + 55349, 56614, 55349, 56615, 55349, 56616, 55349, 56617, + 55349, 56618, 55349, 56619, 55349, 56620, 55349, 56621, + 55349, 56622, 55349, 56623, 55349, 56624, 55349, 56625, + 55349, 56626, 55349, 56627, 55349, 56628, 55349, 56629, + 55349, 56630, 55349, 56631, 55349, 56632, 55349, 56633, + 55349, 56635, 55349, 56636, 55349, 56637, 55349, 56638, + 55349, 56640, 55349, 56641, 55349, 56642, 55349, 56643, + 55349, 56644, 55349, 56646, 55349, 56650, 55349, 56651, + 55349, 56652, 55349, 56653, 55349, 56654, 55349, 56655, + 55349, 56656, 55349, 56658, 55349, 56659, 55349, 56660, + 55349, 56661, 55349, 56662, 55349, 56663, 55349, 56664, + 55349, 56665, 55349, 56666, 55349, 56667, 55349, 56668, + 55349, 56669, 55349, 56670, 55349, 56671, 55349, 56672, + 55349, 56673, 55349, 56674, 55349, 56675, 55349, 56676, + 55349, 56677, 55349, 56678, 55349, 56679, 55349, 56680, + 55349, 56681, 55349, 56682, 55349, 56683, 55349, 56684, + 55349, 56685, 55349, 56686, 55349, 56687, 55349, 56688, + 55349, 56689, 55349, 56690, 55349, 56691, 55349, 56692, + 55349, 56693, 55349, 56694, 55349, 56695, 55349, 56696, + 55349, 56697, 55349, 56698, 55349, 56699, 55349, 56700, + 55349, 56701, 55349, 56702, 55349, 56703, 55349, 56704, + 55349, 56705, 55349, 56706, 55349, 56707, 55349, 56708, + 55349, 56709, 55349, 56710, 55349, 56711, 55349, 56712, + 55349, 56713, 55349, 56714, 55349, 56715, 55349, 56716, + 55349, 56717, 55349, 56718, 55349, 56719, 55349, 56720, + 55349, 56721, 55349, 56722, 55349, 56723, 55349, 56724, + 55349, 56725, 55349, 56726, 55349, 56727, 55349, 56728, + 55349, 56729, 55349, 56730, 55349, 56731, 55349, 56732, + 55349, 56733, 55349, 56734, 55349, 56735, 55349, 56736, + 55349, 56737, 55349, 56738, 55349, 56739, 55349, 56740, + 55349, 56741, 55349, 56742, 55349, 56743, 55349, 56744, + 55349, 56745, 55349, 56746, 55349, 56747, 55349, 56748, + 55349, 56749, 55349, 56750, 55349, 56751, 55349, 56752, + 55349, 56753, 55349, 56754, 55349, 56755, 55349, 56756, + 55349, 56757, 55349, 56758, 55349, 56759, 55349, 56760, + 55349, 56761, 55349, 56762, 55349, 56763, 55349, 56764, + 55349, 56765, 55349, 56766, 55349, 56767, 55349, 56768, + 55349, 56769, 55349, 56770, 55349, 56771, 55349, 56772, + 55349, 56773, 55349, 56774, 55349, 56775, 55349, 56776, + 55349, 56777, 55349, 56778, 55349, 56779, 55349, 56780, + 55349, 56781, 55349, 56782, 55349, 56783, 55349, 56784, + 55349, 56785, 55349, 56786, 55349, 56787, 55349, 56788, + 55349, 56789, 55349, 56790, 55349, 56791, 55349, 56792, + 55349, 56793, 55349, 56794, 55349, 56795, 55349, 56796, + 55349, 56797, 55349, 56798, 55349, 56799, 55349, 56800, + 55349, 56801, 55349, 56802, 55349, 56803, 55349, 56804, + 55349, 56805, 55349, 56806, 55349, 56807, 55349, 56808, + 55349, 56809, 55349, 56810, 55349, 56811, 55349, 56812, + 55349, 56813, 55349, 56814, 55349, 56815, 55349, 56816, + 55349, 56817, 55349, 56818, 55349, 56819, 55349, 56820, + 55349, 56821, 55349, 56822, 55349, 56823, 55349, 56824, + 55349, 56825, 55349, 56826, 55349, 56827, 55349, 56828, + 55349, 56829, 55349, 56830, 55349, 56831, 55349, 56832, + 55349, 56833, 55349, 56834, 55349, 56835, 55349, 56836, + 55349, 56837, 55349, 56838, 55349, 56839, 55349, 56840, + 55349, 56841, 55349, 56842, 55349, 56843, 55349, 56844, + 55349, 56845, 55349, 56846, 55349, 56847, 55349, 56848, + 55349, 56849, 55349, 56850, 55349, 56851, 55349, 56852, + 55349, 56853, 55349, 56854, 55349, 56855, 55349, 56856, + 55349, 56857, 55349, 56858, 55349, 56859, 55349, 56860, + 55349, 56861, 55349, 56862, 55349, 56863, 55349, 56864, + 55349, 56865, 55349, 56866, 55349, 56867, 55349, 56868, + 55349, 56869, 55349, 56870, 55349, 56871, 55349, 56872, + 55349, 56873, 55349, 56874, 55349, 56875, 55349, 56876, + 55349, 56877, 55349, 56878, 55349, 56879, 55349, 56880, + 55349, 56881, 55349, 56882, 55349, 56883, 55349, 56884, + 55349, 56885, 55349, 56886, 55349, 56887, 55349, 56888, + 55349, 56889, 55349, 56890, 55349, 56891, 55349, 56892, + 55349, 56893, 55349, 56894, 55349, 56895, 55349, 56896, + 55349, 56897, 55349, 56898, 55349, 56899, 55349, 56900, + 55349, 56901, 55349, 56902, 55349, 56903, 55349, 56904, + 55349, 56905, 55349, 56906, 55349, 56907, 55349, 56908, + 55349, 56909, 55349, 56910, 55349, 56911, 55349, 56912, + 55349, 56913, 55349, 56914, 55349, 56915, 55349, 56916, + 55349, 56917, 55349, 56918, 55349, 56919, 55349, 56920, + 55349, 56921, 55349, 56922, 55349, 56923, 55349, 56924, + 55349, 56925, 55349, 56926, 55349, 56927, 55349, 56928, + 55349, 56929, 55349, 56930, 55349, 56931, 55349, 56932, + 55349, 56933, 55349, 56934, 55349, 56935, 55349, 56936, + 55349, 56937, 55349, 56938, 55349, 56939, 55349, 56940, + 55349, 56941, 55349, 56942, 55349, 56943, 55349, 56944, + 55349, 56945, 55349, 56946, 55349, 56947, 55349, 56948, + 55349, 56949, 55349, 56950, 55349, 56951, 55349, 56952, + 55349, 56953, 55349, 56954, 55349, 56955, 55349, 56956, + 55349, 56957, 55349, 56958, 55349, 56959, 55349, 56960, + 55349, 56961, 55349, 56962, 55349, 56963, 55349, 56964, + 55349, 56965, 55349, 56966, 55349, 56967, 55349, 56968, + 55349, 56969, 55349, 56970, 55349, 56971, 55349, 56972, + 55349, 56973, 55349, 56974, 55349, 56975, 55349, 56976, + 55349, 56977, 55349, 56978, 55349, 56979, 55349, 56980, + 55349, 56981, 55349, 56982, 55349, 56983, 55349, 56984, + 55349, 56985, 55349, 56986, 55349, 56987, 55349, 56988, + 55349, 56989, 55349, 56990, 55349, 56991, 55349, 56992, + 55349, 56993, 55349, 56994, 55349, 56995, 55349, 56996, + 55349, 56997, 55349, 57000, 55349, 57001, 55349, 57002, + 55349, 57003, 55349, 57004, 55349, 57005, 55349, 57006, + 55349, 57007, 55349, 57008, 55349, 57009, 55349, 57010, + 55349, 57011, 55349, 57012, 55349, 57013, 55349, 57014, + 55349, 57015, 55349, 57016, 55349, 57017, 55349, 57018, + 55349, 57019, 55349, 57020, 55349, 57021, 55349, 57022, + 55349, 57023, 55349, 57024, 55349, 57026, 55349, 57027, + 55349, 57028, 55349, 57029, 55349, 57030, 55349, 57031, + 55349, 57032, 55349, 57033, 55349, 57034, 55349, 57035, + 55349, 57036, 55349, 57037, 55349, 57038, 55349, 57039, + 55349, 57040, 55349, 57041, 55349, 57042, 55349, 57043, + 55349, 57044, 55349, 57045, 55349, 57046, 55349, 57047, + 55349, 57048, 55349, 57049, 55349, 57050, 55349, 57052, + 55349, 57053, 55349, 57054, 55349, 57055, 55349, 57056, + 55349, 57057, 55349, 57058, 55349, 57059, 55349, 57060, + 55349, 57061, 55349, 57062, 55349, 57063, 55349, 57064, + 55349, 57065, 55349, 57066, 55349, 57067, 55349, 57068, + 55349, 57069, 55349, 57070, 55349, 57071, 55349, 57072, + 55349, 57073, 55349, 57074, 55349, 57075, 55349, 57076, + 55349, 57077, 55349, 57078, 55349, 57079, 55349, 57080, + 55349, 57081, 55349, 57082, 55349, 57084, 55349, 57085, + 55349, 57086, 55349, 57087, 55349, 57088, 55349, 57089, + 55349, 57090, 55349, 57091, 55349, 57092, 55349, 57093, + 55349, 57094, 55349, 57095, 55349, 57096, 55349, 57097, + 55349, 57098, 55349, 57099, 55349, 57100, 55349, 57101, + 55349, 57102, 55349, 57103, 55349, 57104, 55349, 57105, + 55349, 57106, 55349, 57107, 55349, 57108, 55349, 57110, + 55349, 57111, 55349, 57112, 55349, 57113, 55349, 57114, + 55349, 57115, 55349, 57116, 55349, 57117, 55349, 57118, + 55349, 57119, 55349, 57120, 55349, 57121, 55349, 57122, + 55349, 57123, 55349, 57124, 55349, 57125, 55349, 57126, + 55349, 57127, 55349, 57128, 55349, 57129, 55349, 57130, + 55349, 57131, 55349, 57132, 55349, 57133, 55349, 57134, + 55349, 57135, 55349, 57136, 55349, 57137, 55349, 57138, + 55349, 57139, 55349, 57140, 55349, 57142, 55349, 57143, + 55349, 57144, 55349, 57145, 55349, 57146, 55349, 57147, + 55349, 57148, 55349, 57149, 55349, 57150, 55349, 57151, + 55349, 57152, 55349, 57153, 55349, 57154, 55349, 57155, + 55349, 57156, 55349, 57157, 55349, 57158, 55349, 57159, + 55349, 57160, 55349, 57161, 55349, 57162, 55349, 57163, + 55349, 57164, 55349, 57165, 55349, 57166, 55349, 57168, + 55349, 57169, 55349, 57170, 55349, 57171, 55349, 57172, + 55349, 57173, 55349, 57174, 55349, 57175, 55349, 57176, + 55349, 57177, 55349, 57178, 55349, 57179, 55349, 57180, + 55349, 57181, 55349, 57182, 55349, 57183, 55349, 57184, + 55349, 57185, 55349, 57186, 55349, 57187, 55349, 57188, + 55349, 57189, 55349, 57190, 55349, 57191, 55349, 57192, + 55349, 57193, 55349, 57194, 55349, 57195, 55349, 57196, + 55349, 57197, 55349, 57198, 55349, 57200, 55349, 57201, + 55349, 57202, 55349, 57203, 55349, 57204, 55349, 57205, + 55349, 57206, 55349, 57207, 55349, 57208, 55349, 57209, + 55349, 57210, 55349, 57211, 55349, 57212, 55349, 57213, + 55349, 57214, 55349, 57215, 55349, 57216, 55349, 57217, + 55349, 57218, 55349, 57219, 55349, 57220, 55349, 57221, + 55349, 57222, 55349, 57223, 55349, 57224, 55349, 57226, + 55349, 57227, 55349, 57228, 55349, 57229, 55349, 57230, + 55349, 57231, 55349, 57232, 55349, 57233, 55349, 57234, + 55349, 57235, 55349, 57236, 55349, 57237, 55349, 57238, + 55349, 57239, 55349, 57240, 55349, 57241, 55349, 57242, + 55349, 57243, 55349, 57244, 55349, 57245, 55349, 57246, + 55349, 57247, 55349, 57248, 55349, 57249, 55349, 57250, + 55349, 57251, 55349, 57252, 55349, 57253, 55349, 57254, + 55349, 57255, 55349, 57256, 55349, 57258, 55349, 57259, + 55349, 57260, 55349, 57261, 55349, 57262, 55349, 57263, + 55349, 57264, 55349, 57265, 55349, 57266, 55349, 57267, + 55349, 57268, 55349, 57269, 55349, 57270, 55349, 57271, + 55349, 57272, 55349, 57273, 55349, 57274, 55349, 57275, + 55349, 57276, 55349, 57277, 55349, 57278, 55349, 57279, + 55349, 57280, 55349, 57281, 55349, 57282, 55349, 57284, + 55349, 57285, 55349, 57286, 55349, 57287, 55349, 57288, + 55349, 57289, 55349, 57290, 55349, 57291, 55354, 56576, + 55354, 56577, 55354, 56578, 55354, 56579, 55354, 56580, + 55354, 56581, 55354, 56582, 55354, 56583, 55354, 56584, + 55354, 56585, 55354, 56586, 55354, 56587, 55354, 56588, + 55354, 56589, 55354, 56590, 55354, 56591, 55354, 56592, + 55354, 56593, 55354, 56594, 55354, 56595, 55354, 56596, + 55354, 56597, 55354, 56598, 55354, 56599, 55354, 56600, + 55354, 56601, 55354, 56602, 55354, 56603, 55354, 56604, + 55354, 56605, 55354, 56606, 55354, 56607, 55354, 56608, + 55354, 56609, 55356, 56624, 55356, 56625, 55356, 56626, + 55356, 56627, 55356, 56628, 55356, 56629, 55356, 56630, + 55356, 56631, 55356, 56632, 55356, 56633, 55356, 56634, + 55356, 56635, 55356, 56636, 55356, 56637, 55356, 56638, + 55356, 56639, 55356, 56640, 55356, 56641, 55356, 56642, + 55356, 56643, 55356, 56644, 55356, 56645, 55356, 56646, + 55356, 56647, 55356, 56648, 55356, 56649, 55356, 56656, + 55356, 56657, 55356, 56658, 55356, 56659, 55356, 56660, + 55356, 56661, 55356, 56662, 55356, 56663, 55356, 56664, + 55356, 56665, 55356, 56666, 55356, 56667, 55356, 56668, + 55356, 56669, 55356, 56670, 55356, 56671, 55356, 56672, + 55356, 56673, 55356, 56674, 55356, 56675, 55356, 56676, + 55356, 56677, 55356, 56678, 55356, 56679, 55356, 56680, + 55356, 56681, 55356, 56688, 55356, 56689, 55356, 56690, + 55356, 56691, 55356, 56692, 55356, 56693, 55356, 56694, + 55356, 56695, 55356, 56696, 55356, 56697, 55356, 56698, + 55356, 56699, 55356, 56700, 55356, 56701, 55356, 56702, + 55356, 56703, 55356, 56704, 55356, 56705, 55356, 56706, + 55356, 56707, 55356, 56708, 55356, 56709, 55356, 56710, + 55356, 56711, 55356, 56712, 55356, 56713, }; -const utf8proc_uint16_t utf8proc_stage1table[] = { +static const utf8proc_uint16_t utf8proc_stage1table[] = { 0, 256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4096, 4352, 4608, 4864, 5120, 5376, 5632, @@ -1197,7 +1537,7 @@ const utf8proc_uint16_t utf8proc_stage1table[] = { 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, - 13824, 14080, 13312, 13312, 13312, 14336, 13312, 14592, + 13824, 14080, 13312, 13312, 13312, 14336, 5376, 14592, 14848, 15104, 15360, 15616, 15872, 16128, 16384, 16640, 16896, 17152, 17408, 17664, 16128, 16384, 16640, 16896, 17152, 17408, 17664, 16128, 16384, 16640, 16896, 17152, @@ -1209,39 +1549,43 @@ const utf8proc_uint16_t utf8proc_stage1table[] = { 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18688, 18944, 19200, 19456, 19712, 19968, - 20224, 20480, 20736, 20992, 21248, 21504, 21760, 22016, - 22272, 22528, 22784, 23040, 23296, 23552, 23808, 24064, - 23808, 24320, 24576, 24832, 25088, 25344, 25600, 25856, - 26112, 26368, 23808, 26624, 23808, 26880, 23808, 23808, - 23808, 27136, 27136, 27136, 27392, 27648, 27904, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 27136, 27136, 27136, 27136, 28160, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 27136, 27136, 28416, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 27136, 27136, 28672, 28928, 23808, 23808, 23808, - 29184, 13312, 13312, 13312, 13312, 13312, 13312, 13312, + 20224, 20480, 20736, 20992, 21248, 21504, 21760, 5376, + 22016, 22272, 22528, 22784, 23040, 23296, 23552, 23808, + 24064, 24320, 24576, 24832, 25088, 25344, 25600, 25856, + 26112, 26368, 26624, 26880, 27136, 27392, 27648, 27904, + 28160, 5376, 5376, 5376, 28416, 28672, 28928, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 5376, 5376, 5376, 5376, 29184, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 5376, 5376, 29440, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 5376, 5376, 29696, 29952, 27136, 27136, 30208, + 30464, 13312, 13312, 13312, 13312, 13312, 13312, 13312, + 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, + 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, + 30720, 13312, 13312, 13312, 13312, 30976, 31232, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 13312, 31488, 31744, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 32000, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 32256, 32512, 32768, 33024, 33280, 33536, 33792, + 34048, 10240, 10240, 34304, 27136, 27136, 27136, 27136, + 27136, 34560, 34816, 35072, 27136, 27136, 27136, 27136, + 27136, 35328, 35584, 27136, 27136, 35840, 36096, 36352, + 27136, 36608, 36864, 37120, 37376, 37632, 37888, 38144, + 38400, 38656, 38912, 39168, 39424, 27136, 27136, 27136, + 27136, 13312, 13312, 13312, 13312, 13312, 13312, 13312, + 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, + 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, - 29440, 13312, 13312, 29696, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 29952, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 30208, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 30464, 30720, 30976, 31232, 31488, 31744, 32000, - 32256, 10240, 10240, 32512, 23808, 23808, 23808, 23808, - 23808, 32768, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 33024, 33280, 23808, 23808, 23808, 23808, 33536, - 23808, 33792, 34048, 34304, 34560, 34816, 35072, 35328, - 35584, 35840, 36096, 23808, 23808, 23808, 23808, 23808, - 23808, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, @@ -1257,407 +1601,403 @@ const utf8proc_uint16_t utf8proc_stage1table[] = { 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, + 13312, 13312, 13312, 13312, 13312, 13312, 13312, 39680, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, + 39936, 40192, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, + 13312, 13312, 13312, 13312, 13312, 13312, 13312, 40448, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, - 13312, 13312, 13312, 13312, 13312, 13312, 13312, 36352, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, - 36608, 36864, 13312, 13312, 13312, 13312, 13312, 13312, + 13312, 13312, 13312, 13312, 40704, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 40960, 41216, 41472, 27136, 27136, 27136, 27136, + 27136, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, 13312, - 13312, 13312, 13312, 13312, 13312, 13312, 13312, 37120, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 37376, 37632, 37888, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 38144, 38400, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 23808, 23808, 23808, 23808, 23808, 23808, 23808, - 23808, 18432, 18432, 18432, 18432, 18432, 18432, 18432, + 13312, 13312, 13312, 13312, 41728, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 41984, 42240, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 27136, 27136, 27136, 27136, 27136, 27136, 27136, + 27136, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, @@ -1689,7 +2029,7 @@ const utf8proc_uint16_t utf8proc_stage1table[] = { 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, - 38656, 18432, 18432, 18432, 18432, 18432, 18432, 18432, + 42496, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, @@ -1721,9 +2061,9 @@ const utf8proc_uint16_t utf8proc_stage1table[] = { 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, 18432, - 38656, }; + 42496, }; -const utf8proc_uint16_t utf8proc_stage2table[] = { +static const utf8proc_uint16_t utf8proc_stage2table[] = { 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 4, 3, 5, 6, 2, 2, 2, 2, 2, 2, 2, 2, 2, @@ -1745,1142 +2085,1142 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 76, 9, 11, 11, 11, 11, 77, - 9, 78, 77, 79, 80, 75, 81, 77, - 82, 83, 84, 85, 86, 87, 88, 9, - 9, 89, 90, 91, 92, 93, 94, 95, - 9, 96, 97, 98, 99, 100, 101, 102, - 103, 104, 105, 106, 107, 108, 109, 110, - 111, 112, 113, 114, 115, 116, 117, 118, - 75, 119, 120, 121, 122, 123, 124, 125, - 126, 127, 128, 129, 130, 131, 132, 133, - 134, 135, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, - 75, 150, 151, 152, 153, 154, 155, 156, - 157, 158, 159, 160, 161, 162, 163, 164, - 165, 166, 167, 168, 169, 170, 171, 172, - 173, 174, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, 201, 202, 203, 204, - 205, 206, 207, 208, 209, 210, 211, 212, - 213, 214, 215, 216, 217, 218, 219, 220, - 221, 222, 223, 224, 225, 226, 227, 228, - 229, 230, 231, 232, 233, 234, 235, 236, - 237, 238, 239, 240, 241, 242, 243, 244, - 245, 246, 247, 248, 249, 250, 251, 252, - 253, 254, 255, 256, 257, 258, 259, 260, - 261, 262, 263, 264, 265, 266, 267, 268, - 269, 270, 271, 272, 273, 274, 275, 276, - 277, 278, 279, 280, 281, 282, 283, 284, - 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 214, 299, - 300, 301, 302, 303, 304, 305, 306, 307, - 308, 309, 310, 311, 214, 312, 313, 314, - 315, 316, 317, 318, 319, 320, 321, 322, - 323, 324, 325, 214, 214, 326, 327, 328, - 329, 330, 331, 332, 333, 334, 335, 336, - 337, 338, 339, 214, 340, 341, 342, 214, - 343, 340, 340, 340, 340, 344, 345, 346, - 347, 348, 349, 350, 351, 352, 353, 354, - 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 367, 368, 369, 370, - 371, 372, 373, 374, 375, 376, 377, 378, - 379, 380, 381, 382, 383, 384, 385, 386, - 387, 388, 389, 390, 391, 392, 393, 394, - 395, 396, 397, 398, 399, 400, 401, 402, - 403, 404, 405, 406, 407, 408, 409, 410, - 411, 412, 413, 414, 415, 416, 417, 418, - 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 430, 431, 432, 433, 434, - 435, 436, 214, 437, 438, 439, 440, 441, + 9, 78, 79, 80, 81, 75, 82, 79, + 83, 84, 85, 86, 87, 88, 89, 9, + 9, 90, 91, 92, 93, 94, 95, 96, + 9, 97, 98, 99, 100, 101, 102, 103, + 104, 105, 106, 107, 108, 109, 110, 111, + 112, 113, 114, 115, 116, 117, 118, 119, + 75, 120, 121, 122, 123, 124, 125, 126, + 127, 128, 129, 130, 131, 132, 133, 134, + 135, 136, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, + 75, 151, 152, 153, 154, 155, 156, 157, + 158, 159, 160, 161, 162, 163, 164, 165, + 166, 167, 168, 169, 170, 171, 172, 173, + 174, 175, 176, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, + 190, 191, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 203, 204, 205, + 206, 207, 208, 209, 210, 211, 212, 213, + 214, 215, 216, 217, 218, 219, 220, 221, + 222, 223, 224, 225, 226, 227, 228, 229, + 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 241, 242, 243, 244, 245, + 246, 247, 248, 249, 250, 251, 252, 253, + 254, 255, 256, 257, 258, 259, 260, 261, + 262, 263, 264, 265, 266, 267, 268, 269, + 270, 271, 272, 273, 274, 275, 276, 277, + 278, 279, 280, 281, 282, 283, 284, 285, + 286, 287, 288, 289, 290, 291, 292, 293, + 294, 295, 296, 297, 298, 299, 300, 301, + 302, 303, 304, 305, 306, 307, 308, 309, + 310, 311, 312, 313, 314, 315, 316, 317, + 318, 319, 320, 321, 322, 323, 324, 325, + 326, 327, 328, 329, 330, 331, 332, 333, + 334, 335, 336, 337, 338, 339, 340, 341, + 342, 343, 344, 345, 346, 347, 348, 349, + 350, 346, 346, 346, 346, 351, 352, 353, + 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 368, 369, + 370, 371, 372, 373, 374, 375, 376, 377, + 378, 379, 380, 381, 382, 383, 384, 385, + 386, 387, 388, 389, 390, 391, 392, 393, + 394, 395, 396, 397, 398, 399, 400, 401, + 402, 403, 404, 405, 406, 407, 408, 409, + 410, 411, 412, 413, 414, 415, 416, 417, + 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 432, 433, + 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 450, 451, 452, 453, 454, 214, 214, 214, - 214, 214, 214, 455, 456, 457, 458, 459, - 460, 461, 462, 463, 464, 465, 466, 467, - 468, 469, 470, 471, 472, 473, 474, 475, - 476, 477, 478, 479, 480, 481, 214, 482, - 483, 214, 484, 214, 485, 486, 214, 214, - 214, 487, 488, 214, 489, 214, 490, 491, - 214, 492, 493, 494, 495, 496, 214, 214, - 497, 214, 498, 499, 214, 214, 500, 214, - 214, 214, 214, 214, 214, 214, 501, 214, - 214, 502, 214, 214, 503, 214, 214, 214, - 504, 505, 506, 507, 508, 509, 214, 214, - 214, 214, 214, 510, 214, 340, 214, 214, - 214, 214, 214, 214, 214, 214, 511, 512, - 214, 214, 214, 214, 214, 214, 214, 214, - 214, 214, 214, 214, 214, 214, 214, 214, - 214, 513, 514, 515, 516, 517, 518, 519, - 520, 521, 522, 522, 523, 523, 523, 523, - 523, 523, 523, 47, 47, 47, 47, 522, - 522, 522, 522, 522, 522, 522, 522, 522, - 522, 523, 523, 47, 47, 47, 47, 47, - 47, 524, 525, 526, 527, 528, 529, 47, - 47, 530, 531, 532, 533, 534, 47, 47, - 47, 47, 47, 47, 47, 522, 47, 523, + 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 461, 462, 463, 464, 465, + 466, 467, 468, 469, 470, 471, 472, 473, + 474, 475, 476, 477, 478, 479, 480, 481, + 482, 483, 484, 485, 486, 487, 488, 489, + 490, 491, 492, 493, 494, 495, 496, 497, + 498, 499, 500, 501, 502, 503, 504, 505, + 506, 507, 508, 509, 510, 511, 512, 513, + 514, 515, 516, 517, 518, 519, 520, 521, + 522, 523, 524, 525, 526, 527, 528, 529, + 530, 531, 532, 533, 534, 535, 536, 537, + 538, 539, 540, 541, 542, 543, 544, 545, + 546, 547, 548, 549, 550, 551, 552, 553, + 554, 555, 556, 557, 558, 346, 559, 560, + 561, 562, 563, 564, 565, 566, 567, 568, + 569, 570, 571, 572, 573, 574, 575, 576, + 577, 578, 579, 580, 581, 582, 583, 584, + 585, 586, 587, 588, 589, 590, 591, 592, + 593, 594, 595, 595, 596, 596, 596, 596, + 596, 597, 598, 47, 47, 47, 47, 595, + 595, 595, 595, 595, 595, 595, 595, 595, + 595, 596, 596, 47, 47, 47, 47, 47, + 47, 599, 600, 601, 602, 603, 604, 47, + 47, 605, 606, 607, 608, 609, 47, 47, + 47, 47, 47, 47, 47, 595, 47, 596, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, - 47, 535, 536, 537, 538, 539, 540, 541, - 542, 543, 544, 545, 546, 547, 540, 540, - 548, 540, 549, 540, 550, 551, 552, 553, - 553, 553, 553, 552, 554, 553, 553, 553, - 553, 553, 555, 555, 556, 557, 558, 559, - 560, 561, 553, 553, 553, 553, 562, 563, - 553, 564, 565, 553, 553, 566, 566, 566, - 566, 567, 553, 553, 553, 553, 540, 540, - 540, 568, 569, 570, 571, 572, 573, 540, - 553, 553, 553, 540, 540, 540, 553, 553, - 574, 540, 540, 540, 553, 553, 553, 553, - 540, 552, 553, 553, 540, 575, 576, 576, - 575, 576, 576, 575, 540, 540, 540, 540, - 540, 540, 540, 540, 540, 540, 540, 540, - 540, 577, 578, 579, 580, 581, 47, 582, - 583, 0, 0, 584, 585, 586, 587, 588, - 589, 0, 0, 0, 0, 87, 590, 591, - 592, 593, 594, 595, 0, 596, 0, 597, - 598, 599, 600, 601, 602, 603, 604, 605, - 606, 607, 608, 609, 610, 611, 612, 613, - 614, 615, 616, 0, 617, 618, 619, 620, - 621, 622, 623, 624, 625, 626, 627, 628, - 629, 630, 631, 632, 633, 634, 635, 636, - 637, 638, 639, 640, 641, 642, 643, 644, - 645, 646, 647, 648, 649, 650, 651, 652, - 653, 654, 655, 656, 657, 658, 659, 660, - 661, 662, 663, 664, 665, 666, 667, 668, - 669, 670, 671, 672, 673, 674, 675, 676, - 677, 678, 679, 680, 681, 682, 683, 684, - 685, 686, 687, 688, 689, 690, 691, 692, - 693, 694, 695, 696, 697, 698, 699, 75, - 700, 701, 702, 703, 704, 214, 705, 706, - 707, 708, 709, 710, 711, 712, 713, 714, - 715, 716, 717, 718, 719, 720, 721, 722, - 723, 724, 725, 726, 727, 728, 729, 730, - 731, 732, 733, 734, 735, 736, 737, 738, - 739, 740, 741, 742, 743, 744, 745, 746, - 747, 748, 749, 750, 751, 752, 753, 754, - 755, 756, 757, 758, 759, 760, 761, 762, - 763, 764, 765, 766, 767, 768, 769, 770, - 771, 772, 773, 774, 775, 776, 777, 778, - 779, 780, 781, 782, 783, 784, 785, 786, - 787, 788, 789, 790, 791, 792, 793, 794, - 795, 796, 797, 798, 799, 800, 801, 802, - 803, 804, 805, 806, 807, 808, 809, 810, - 811, 812, 813, 814, 815, 816, 817, 818, - 819, 820, 821, 822, 823, 824, 825, 826, - 827, 828, 829, 830, 831, 832, 833, 834, - 835, 836, 837, 838, 540, 540, 540, 540, - 540, 839, 839, 840, 841, 842, 843, 844, - 845, 846, 847, 848, 849, 850, 851, 852, - 853, 854, 855, 856, 857, 858, 859, 860, - 861, 862, 863, 864, 865, 866, 867, 868, - 869, 870, 871, 872, 873, 874, 875, 876, - 877, 878, 879, 880, 881, 882, 883, 884, - 885, 886, 887, 888, 889, 890, 891, 892, - 893, 894, 895, 896, 897, 898, 899, 900, - 901, 902, 903, 904, 905, 906, 907, 908, - 909, 910, 911, 912, 913, 914, 915, 916, - 917, 918, 919, 920, 921, 922, 923, 924, - 925, 926, 927, 928, 929, 930, 931, 932, - 933, 934, 935, 936, 937, 938, 939, 940, - 941, 942, 943, 944, 945, 946, 947, 948, - 949, 950, 951, 952, 953, 954, 955, 956, - 957, 958, 959, 960, 961, 962, 963, 964, - 965, 966, 967, 968, 969, 970, 971, 972, - 973, 974, 975, 976, 977, 978, 979, 980, - 981, 982, 983, 984, 985, 986, 987, 988, - 989, 990, 991, 992, 993, 994, 995, 996, - 997, 998, 999, 1000, 1001, 1002, 1003, 1004, - 1005, 0, 1006, 1007, 1008, 1009, 1010, 1011, - 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, - 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, - 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, - 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, - 0, 0, 523, 1044, 1044, 1044, 1044, 1044, - 1044, 0, 1045, 1046, 1047, 1048, 1049, 1050, - 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, - 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, - 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, - 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, - 1083, 0, 1044, 1084, 0, 0, 1085, 1085, - 11, 0, 553, 540, 540, 540, 540, 553, - 540, 540, 540, 1086, 553, 540, 540, 540, - 540, 540, 540, 553, 553, 553, 553, 553, - 553, 540, 540, 553, 540, 540, 1086, 1087, - 540, 1088, 1089, 1090, 1091, 1092, 1093, 1094, - 1095, 1096, 1097, 1097, 1098, 1099, 1100, 1101, - 1102, 1103, 1104, 1105, 1103, 540, 553, 1103, - 1096, 0, 0, 0, 0, 0, 0, 0, - 0, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 0, 0, 0, 0, - 0, 1106, 1106, 1106, 1103, 1103, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1107, 1108, 1108, 1108, 1107, 1107, 1109, - 1109, 1110, 10, 10, 1111, 15, 1112, 1085, - 1085, 540, 540, 540, 540, 540, 540, 540, - 540, 1113, 1114, 1115, 1112, 1116, 0, 1117, - 1112, 1118, 1118, 1119, 1120, 1121, 1122, 1123, - 1124, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1125, 1118, 1118, 1118, 1118, 1118, 1118, - 1126, 1127, 1118, 1128, 1129, 1130, 1131, 1113, - 1114, 1115, 1132, 1133, 1134, 1135, 1136, 553, - 540, 540, 540, 540, 540, 553, 540, 540, - 553, 1137, 1137, 1137, 1137, 1137, 1137, 1137, - 1137, 1137, 1137, 10, 1138, 1138, 1112, 1118, - 1118, 1139, 1118, 1118, 1118, 1118, 1140, 1141, - 1142, 1143, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1126, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1144, 1145, 1146, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1147, 1148, 1112, 1149, 540, - 540, 540, 540, 540, 540, 540, 1108, 1085, - 540, 540, 540, 540, 553, 540, 1125, 1125, - 540, 540, 1085, 553, 540, 540, 553, 1118, - 1118, 17, 17, 17, 17, 17, 17, 17, - 17, 17, 17, 1118, 1118, 1118, 1150, 1150, - 1126, 1117, 1117, 1117, 1117, 1117, 1117, 1117, - 1117, 1117, 1117, 1117, 1117, 1117, 1117, 0, - 1151, 1126, 1152, 1126, 1126, 1126, 1126, 1126, - 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, - 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, - 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, - 1126, 540, 553, 540, 540, 553, 540, 540, - 553, 553, 553, 540, 553, 553, 540, 553, - 540, 540, 540, 553, 540, 553, 540, 553, - 540, 553, 540, 540, 0, 0, 1126, 1126, - 1126, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1126, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1126, 1126, - 1126, 1118, 1118, 1118, 1118, 1118, 1118, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1118, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1154, 1154, 1154, 1154, 1154, 1154, 1154, - 1154, 1154, 1154, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 540, 540, 540, 540, - 540, 540, 540, 553, 540, 1155, 1155, 77, - 9, 9, 9, 1155, 0, 0, 0, 0, - 0, 1156, 1156, 1156, 1156, 1156, 1156, 1156, - 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, - 1156, 1156, 1156, 1156, 1156, 1156, 1156, 540, - 540, 540, 540, 1157, 540, 540, 540, 540, - 540, 540, 540, 540, 540, 1157, 540, 540, - 540, 1157, 540, 540, 540, 540, 540, 0, - 0, 1158, 1158, 1158, 1158, 1158, 1158, 1158, - 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, - 0, 1156, 1156, 1156, 1156, 1156, 1156, 1156, - 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, - 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, - 1156, 1156, 553, 553, 553, 0, 0, 1158, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 0, 1118, - 1118, 1118, 1118, 1118, 1118, 1118, 1118, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 540, 540, 540, - 540, 540, 540, 540, 540, 540, 540, 540, - 540, 540, 540, 1107, 553, 540, 540, 553, - 540, 540, 553, 540, 540, 540, 553, 553, - 553, 1129, 1130, 1131, 540, 540, 540, 553, - 540, 540, 553, 553, 540, 540, 540, 540, - 540, 1153, 1153, 1153, 1159, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1161, 1162, 1160, 1160, 1160, 1160, 1160, - 1160, 1163, 1164, 1160, 1165, 1166, 1160, 1160, - 1160, 1160, 1160, 1153, 1159, 1167, 1160, 1159, - 1159, 1159, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1159, 1159, 1159, 1159, 1168, 1159, - 1159, 1160, 540, 553, 540, 540, 1153, 1153, - 1153, 1169, 1170, 1171, 1172, 1173, 1174, 1175, - 1176, 1160, 1160, 1153, 1153, 1177, 1177, 1178, - 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1177, 1179, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1153, 1159, 1159, 0, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 0, 0, - 1160, 1160, 0, 0, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 0, 0, 0, 1160, - 1160, 1160, 1160, 0, 0, 1180, 1160, 1181, - 1159, 1159, 1153, 1153, 1153, 1153, 0, 0, - 1182, 1159, 0, 0, 1183, 1184, 1168, 1160, - 0, 0, 0, 0, 0, 0, 0, 0, - 1185, 0, 0, 0, 0, 1186, 1187, 0, - 1188, 1160, 1160, 1153, 1153, 0, 0, 1178, - 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1160, 1160, 1189, 1189, 1190, 1190, 1190, - 1190, 1190, 1190, 1191, 1189, 0, 0, 0, - 0, 0, 1153, 1153, 1159, 0, 1160, 1160, - 1160, 1160, 1160, 1160, 0, 0, 0, 0, - 1160, 1160, 0, 0, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1192, 0, 1160, 1193, - 0, 1160, 1160, 0, 0, 1180, 0, 1159, - 1159, 1159, 1153, 1153, 0, 0, 0, 0, - 1153, 1153, 0, 0, 1153, 1153, 1168, 0, - 0, 0, 1153, 0, 0, 0, 0, 0, - 0, 0, 1194, 1195, 1196, 1160, 0, 1197, - 0, 0, 0, 0, 0, 0, 0, 1178, - 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1153, 1153, 1160, 1160, 1160, 1153, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1153, 1153, 1159, 0, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 0, - 1160, 1160, 1160, 0, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1160, 0, 1160, 1160, - 1160, 1160, 1160, 0, 0, 1180, 1160, 1159, - 1159, 1159, 1153, 1153, 1153, 1153, 1153, 0, - 1153, 1153, 1159, 0, 1159, 1159, 1168, 0, - 0, 1160, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1153, 1153, 0, 0, 1178, - 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1177, 1189, 0, 0, 0, 0, 0, - 0, 0, 1160, 0, 0, 0, 0, 0, - 0, 0, 1153, 1159, 1159, 0, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 0, 0, - 1160, 1160, 0, 0, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1160, 0, 1160, 1160, - 1160, 1160, 1160, 0, 0, 1180, 1160, 1198, - 1153, 1159, 1153, 1153, 1153, 1153, 0, 0, - 1199, 1200, 0, 0, 1201, 1202, 1168, 0, - 0, 0, 0, 0, 0, 0, 0, 1203, - 1204, 0, 0, 0, 0, 1205, 1206, 0, - 1160, 1160, 1160, 1153, 1153, 0, 0, 1178, - 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1191, 1160, 1190, 1190, 1190, 1190, 1190, - 1190, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1153, 1160, 0, 1160, 1160, - 1160, 1160, 1160, 1160, 0, 0, 0, 1160, - 1160, 1160, 0, 1207, 1160, 1208, 1160, 0, - 0, 0, 1160, 1160, 0, 1160, 0, 1160, - 1160, 0, 0, 0, 1160, 1160, 0, 0, - 0, 1160, 1160, 1160, 0, 0, 0, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 0, 0, 0, 0, 1209, - 1159, 1153, 1159, 1159, 0, 0, 0, 1210, - 1211, 1159, 0, 1212, 1213, 1214, 1168, 0, - 0, 1160, 0, 0, 0, 0, 0, 0, - 1215, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1178, - 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1190, 1190, 1190, 1085, 1085, 1085, 1085, - 1085, 1085, 1189, 1085, 0, 0, 0, 0, - 0, 1153, 1159, 1159, 1159, 0, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 0, 1160, - 1160, 1160, 0, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 0, 0, 0, 1160, 1153, - 1153, 1153, 1159, 1159, 1159, 1159, 0, 1216, - 1153, 1217, 0, 1153, 1153, 1153, 1168, 0, - 0, 0, 0, 0, 0, 0, 1218, 1219, - 0, 1160, 1160, 1160, 0, 0, 0, 0, - 0, 1160, 1160, 1153, 1153, 0, 0, 1178, - 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 0, 0, 0, 0, 0, 0, 0, - 0, 1220, 1220, 1220, 1220, 1220, 1220, 1220, - 1191, 1160, 1153, 1159, 1159, 0, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 0, 1160, - 1160, 1160, 0, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 0, 1160, 1160, - 1160, 1160, 1160, 0, 0, 1180, 1160, 1159, - 1221, 1222, 1159, 1223, 1159, 1159, 0, 1224, - 1225, 1226, 0, 1227, 1228, 1153, 1168, 0, - 0, 0, 0, 0, 0, 0, 1229, 1230, - 0, 0, 0, 0, 0, 0, 0, 1160, - 0, 1160, 1160, 1153, 1153, 0, 0, 1178, - 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 0, 1160, 1160, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1153, 1159, 1159, 0, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 0, 1160, - 1160, 1160, 0, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 0, 0, 1160, 1231, - 1159, 1159, 1153, 1153, 1153, 1153, 0, 1232, - 1233, 1159, 0, 1234, 1235, 1236, 1168, 1237, - 1191, 0, 0, 0, 0, 1160, 1160, 1160, - 1238, 1190, 1190, 1190, 1190, 1190, 1190, 1190, - 1160, 1160, 1160, 1153, 1153, 0, 0, 1178, - 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1190, 1190, 1190, 1190, 1190, 1190, 1190, - 1190, 1190, 1191, 1160, 1160, 1160, 1160, 1160, - 1160, 0, 0, 1159, 1159, 0, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 0, 0, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 0, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 0, 1160, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 0, 0, 1239, 0, 0, 0, 0, - 1240, 1159, 1159, 1153, 1153, 1153, 0, 1153, - 0, 1159, 1241, 1242, 1159, 1243, 1244, 1245, - 1246, 0, 0, 0, 0, 0, 0, 1178, - 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 0, 0, 1159, 1159, 1177, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 1153, 340, 1247, 1153, 1153, 1153, - 1153, 1248, 1248, 1168, 0, 0, 0, 0, - 11, 340, 340, 340, 340, 340, 340, 523, - 1153, 1249, 1249, 1249, 1249, 1153, 1153, 1153, - 1044, 1250, 1250, 1250, 1250, 1250, 1250, 1250, - 1250, 1250, 1250, 1044, 1044, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 340, 340, 0, 340, 0, 0, - 340, 340, 0, 340, 0, 0, 340, 0, - 0, 0, 0, 0, 0, 340, 340, 340, - 340, 0, 340, 340, 340, 340, 340, 340, - 340, 0, 340, 340, 340, 0, 340, 0, - 340, 0, 0, 340, 340, 0, 340, 340, - 340, 340, 1153, 340, 1251, 1153, 1153, 1153, - 1153, 1252, 1252, 0, 1153, 1153, 340, 0, - 0, 340, 340, 340, 340, 340, 0, 523, - 0, 1253, 1253, 1253, 1253, 1153, 1153, 0, - 0, 1250, 1250, 1250, 1250, 1250, 1250, 1250, - 1250, 1250, 1250, 0, 0, 1254, 1255, 340, - 340, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1191, 1191, 1191, 1177, 1177, 1177, - 1177, 1177, 1177, 1177, 1177, 1256, 1177, 1177, - 1177, 1177, 1177, 1177, 1191, 1177, 1191, 1191, - 1191, 553, 553, 1191, 1191, 1191, 1191, 1191, - 1191, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 1190, 1190, 1190, 1190, 1190, - 1190, 1190, 1190, 1190, 1190, 1191, 553, 1191, - 553, 1191, 1257, 1258, 1259, 1258, 1259, 1159, - 1159, 1160, 1160, 1160, 1260, 1160, 1160, 1160, - 1160, 0, 1160, 1160, 1160, 1160, 1261, 1160, - 1160, 1160, 1160, 1262, 1160, 1160, 1160, 1160, - 1263, 1160, 1160, 1160, 1160, 1264, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1265, 1160, 1160, 1160, 0, 0, - 0, 0, 1266, 1267, 1268, 1269, 1270, 1271, - 1272, 1273, 1274, 1267, 1267, 1267, 1267, 1153, - 1159, 1267, 1275, 540, 540, 1168, 1177, 540, - 540, 1160, 1160, 1160, 1160, 1160, 1153, 1153, - 1153, 1153, 1153, 1153, 1276, 1153, 1153, 1153, - 1153, 0, 1153, 1153, 1153, 1153, 1277, 1153, - 1153, 1153, 1153, 1278, 1153, 1153, 1153, 1153, - 1279, 1153, 1153, 1153, 1153, 1280, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1281, 1153, 1153, 1153, 0, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 553, - 1191, 1191, 1191, 1191, 1191, 1191, 0, 1191, - 1191, 1177, 1177, 1177, 1177, 1177, 1191, 1191, - 1191, 1191, 1177, 1177, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 340, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 340, 1160, 1160, 1160, 1160, 1282, 1283, - 1160, 1160, 1160, 1160, 1284, 1284, 1153, 1285, - 1153, 1153, 1159, 1153, 1153, 1153, 1153, 1153, - 1180, 1284, 1168, 1168, 1159, 1159, 1153, 1153, - 1160, 1178, 1178, 1250, 1250, 1178, 1178, 1178, - 1178, 1178, 1178, 1044, 1044, 1044, 1177, 1177, - 1177, 1160, 1160, 1160, 1160, 340, 1160, 1159, - 1159, 1153, 1153, 1160, 1160, 1160, 1160, 1153, - 1153, 1153, 1160, 1284, 1284, 1284, 1160, 1160, - 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1160, - 1160, 1160, 1153, 1153, 1153, 1153, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1153, 1284, 1159, 1153, 1153, - 1284, 1284, 1284, 1284, 1284, 1284, 553, 1160, - 1284, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 1284, 1284, 1284, 1153, 1191, - 1191, 1286, 1287, 1288, 1289, 1290, 1291, 1292, - 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, - 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, - 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, - 1317, 1318, 1319, 1320, 1321, 1322, 1323, 0, - 1324, 0, 0, 0, 0, 0, 1325, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 1044, 1326, 340, 340, - 340, 1327, 1327, 1327, 1327, 1327, 1327, 1327, - 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, - 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, - 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, - 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, - 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, - 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, - 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, - 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, - 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, - 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, - 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, - 1328, 1329, 1330, 1330, 1330, 1330, 1330, 1330, - 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, - 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, - 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, - 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, - 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, - 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, - 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, - 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, - 1330, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1160, 1160, 1160, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 1160, 0, 1160, 1160, 1160, 1160, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1160, 1160, 1160, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1160, 1160, 1160, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 1160, 0, 1160, 1160, 1160, 1160, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1160, 1160, 1160, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 340, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 0, 0, 540, 540, - 540, 1177, 1044, 1177, 1177, 1177, 1177, 1177, - 1177, 1177, 1190, 1190, 1190, 1190, 1190, 1190, - 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, - 1190, 1190, 1190, 1190, 1190, 1190, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 77, 77, 77, 77, 77, 1085, 77, - 1085, 1085, 77, 0, 0, 0, 0, 0, - 0, 1332, 1333, 1334, 1335, 1336, 1337, 1338, - 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, - 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, - 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, - 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, - 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, - 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, - 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, - 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, - 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, - 1411, 1412, 1413, 1414, 1415, 1416, 1417, 0, - 0, 1418, 1419, 1420, 1421, 1422, 1423, 0, - 0, 1424, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 340, 340, 340, 340, - 340, 340, 340, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 340, 340, 340, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 340, - 1160, 1160, 1160, 1160, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 340, 340, 340, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 1160, 1160, 1160, 1160, 1160, - 1160, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 340, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 340, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 340, 340, 340, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 340, - 340, 340, 340, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 340, 340, 340, 340, 1160, 1160, 1160, 1160, - 340, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 340, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 340, 340, 340, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 340, - 340, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 340, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1177, 1044, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 1425, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1258, 1259, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 1160, 340, 1160, 340, 340, 340, 340, - 340, 340, 340, 340, 1044, 1044, 1044, 1426, - 1426, 1426, 340, 340, 340, 340, 340, 340, - 340, 340, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 0, 1160, - 1160, 1160, 1160, 1153, 1153, 1168, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1153, 1153, 1168, 1177, 1177, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1153, 1153, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 340, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 0, 1160, - 1160, 1160, 0, 1153, 1153, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 574, 574, 1159, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1159, - 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1153, - 1159, 1159, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1168, 1153, 1177, 1177, 1044, - 1179, 1177, 1177, 1177, 1189, 340, 540, 0, - 0, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 0, 0, 0, 0, 0, - 0, 1427, 1427, 1427, 1427, 1427, 1427, 1427, - 1427, 1427, 1427, 0, 0, 0, 0, 0, - 0, 1428, 1428, 1428, 1428, 1428, 1428, 1424, - 1428, 1428, 1428, 1428, 574, 574, 574, 81, - 0, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1179, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1153, 1153, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1087, 1160, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 340, 340, 340, - 1160, 340, 1160, 340, 1160, 1160, 1160, 340, - 340, 1160, 1160, 1160, 340, 340, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 340, 1160, 340, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 340, 340, 340, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 1153, 1153, 1153, 1159, 1159, 1159, 1159, - 1153, 1153, 1159, 1159, 1159, 0, 0, 0, - 0, 1159, 1159, 1153, 1159, 1159, 1159, 1159, - 1159, 1159, 1086, 540, 553, 0, 0, 0, - 0, 1085, 0, 0, 0, 1428, 1428, 1178, - 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 0, - 0, 340, 340, 340, 340, 340, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 0, 0, 0, 0, 0, - 0, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 1190, 0, 0, 0, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 540, 553, 1159, 1159, 1153, 0, 0, 1177, - 1177, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1159, 1153, - 1159, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 0, 1168, 1284, 1153, 1284, 1284, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1159, 1159, - 1159, 1159, 1159, 1159, 1153, 1153, 540, 540, - 540, 540, 540, 540, 540, 540, 0, 0, - 553, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 0, 0, 0, 0, 0, - 0, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 0, 0, 0, 0, 0, - 0, 1177, 1177, 1177, 1177, 1177, 1177, 1177, - 1179, 1177, 1177, 1177, 1177, 1177, 1177, 0, - 0, 540, 540, 540, 540, 540, 553, 553, - 553, 553, 553, 553, 540, 540, 553, 839, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1153, 1153, 1153, 1153, 1159, 1429, 1430, - 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, - 1160, 1160, 1439, 1440, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1180, 1441, 1153, - 1153, 1153, 1153, 1442, 1443, 1444, 1445, 1446, - 1447, 1448, 1449, 1450, 1451, 1452, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 0, 0, 0, - 0, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 1177, 1177, 1177, 1177, 1177, - 1177, 1177, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 540, 553, 540, 540, - 540, 540, 540, 540, 540, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 0, 0, - 0, 1153, 1153, 1159, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1159, 1153, 1153, 1153, 1153, 1159, - 1159, 1153, 1153, 1452, 1168, 1153, 1153, 1160, - 1160, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1180, - 1159, 1153, 1153, 1159, 1159, 1159, 1153, 1159, - 1153, 1153, 1153, 1452, 1452, 0, 0, 0, - 0, 0, 0, 0, 0, 1177, 1177, 1177, - 1177, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1159, 1159, 1159, - 1159, 1159, 1159, 1159, 1159, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1159, 1159, 1153, - 1180, 0, 0, 0, 1177, 1177, 1177, 1177, - 1177, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 0, 0, 0, 1160, 1160, - 1160, 1250, 1250, 1250, 1250, 1250, 1250, 1250, - 1250, 1250, 1250, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 523, 523, 523, 523, 523, 523, 1044, - 1044, 1453, 1454, 1455, 1456, 1457, 1457, 1458, - 1459, 1460, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1177, 1177, 1177, 1177, 1177, 1177, 1177, - 1177, 0, 0, 0, 0, 0, 0, 0, - 0, 540, 540, 540, 1177, 566, 553, 553, - 553, 553, 553, 540, 540, 553, 553, 553, - 553, 540, 1159, 566, 566, 566, 566, 566, - 566, 566, 1160, 1160, 1160, 1160, 553, 1160, - 1160, 1160, 1160, 1159, 1159, 540, 1160, 1160, - 0, 540, 540, 0, 0, 0, 0, 0, - 0, 214, 214, 214, 214, 214, 214, 214, - 214, 214, 214, 214, 214, 214, 214, 214, - 214, 214, 214, 214, 214, 214, 214, 214, - 214, 214, 214, 214, 214, 214, 214, 214, - 214, 214, 214, 214, 214, 214, 214, 214, - 214, 214, 214, 214, 214, 1461, 1462, 1463, - 523, 1464, 1465, 1466, 1467, 1468, 1469, 1470, - 1471, 1472, 1473, 1474, 523, 1475, 1476, 1477, - 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, - 1486, 1487, 1488, 1489, 1490, 1491, 1492, 523, - 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, - 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, - 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, - 1517, 1518, 1519, 1520, 214, 214, 214, 214, - 214, 214, 214, 214, 214, 214, 214, 214, - 214, 1521, 1522, 1523, 214, 214, 1524, 214, - 214, 214, 214, 214, 214, 214, 214, 214, - 214, 214, 214, 214, 214, 214, 214, 214, - 214, 214, 214, 214, 214, 214, 1523, 214, - 214, 214, 214, 214, 1525, 1526, 1527, 1528, - 1491, 1529, 1530, 1531, 1532, 1533, 1534, 1535, - 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, - 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, - 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, - 1560, 540, 540, 553, 540, 540, 540, 540, - 540, 540, 540, 553, 540, 540, 576, 1561, - 553, 555, 540, 540, 540, 540, 540, 540, - 540, 540, 540, 540, 540, 540, 540, 540, - 540, 540, 540, 540, 540, 540, 540, 540, - 540, 540, 540, 540, 540, 540, 540, 540, - 540, 540, 540, 540, 540, 540, 540, 0, - 0, 0, 0, 0, 540, 575, 553, 540, - 553, 1562, 1563, 1564, 1565, 1566, 1567, 1568, - 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, - 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, - 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, - 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, - 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, - 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, - 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, - 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, - 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, - 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648, - 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, - 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, - 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, - 1673, 1674, 1675, 1676, 1677, 1678, 1679, 1680, - 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, - 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, - 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, - 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, - 1713, 1714, 1715, 1716, 1717, 214, 214, 1718, - 214, 1719, 1720, 1721, 1722, 1723, 1724, 1725, - 1726, 1727, 1728, 1729, 1730, 1731, 1732, 1733, - 1734, 1735, 1736, 1737, 1738, 1739, 1740, 1741, - 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, - 1750, 1751, 1752, 1753, 1754, 1755, 1756, 1757, - 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765, - 1766, 1767, 1768, 1769, 1770, 1771, 1772, 1773, - 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1781, - 1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, - 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797, - 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, - 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, - 1814, 1815, 1816, 1817, 1818, 1819, 1820, 1821, - 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, - 1830, 1831, 1832, 1833, 1834, 1835, 1836, 0, - 0, 1837, 1838, 1839, 1840, 1841, 1842, 0, - 0, 1843, 1844, 1845, 1846, 1847, 1848, 1849, - 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, - 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, - 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, - 1874, 1875, 1876, 1877, 1878, 1879, 1880, 0, - 0, 1881, 1882, 1883, 1884, 1885, 1886, 0, - 0, 1887, 1888, 1889, 1890, 1891, 1892, 1893, - 1894, 0, 1895, 0, 1896, 0, 1897, 0, - 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, - 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, - 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, - 1922, 1923, 1924, 1925, 1926, 1927, 1928, 0, - 0, 1929, 1930, 1931, 1932, 1933, 1934, 1935, - 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, - 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, - 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, - 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, - 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, - 1976, 1977, 1978, 1979, 1980, 1981, 0, 1982, - 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, - 1991, 1992, 1993, 1994, 1995, 1996, 0, 1997, - 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, - 2006, 2007, 2008, 2009, 2010, 0, 0, 2011, - 2012, 2013, 2014, 2015, 2016, 0, 2017, 2018, - 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, - 2027, 2028, 2029, 2030, 2031, 2032, 2033, 2034, - 2035, 0, 0, 2036, 2037, 2038, 0, 2039, - 2040, 2041, 2042, 2043, 2044, 2045, 2046, 2047, - 0, 2048, 2049, 2050, 2051, 2050, 2050, 2050, - 2052, 2050, 2050, 2050, 81, 2053, 2054, 2055, - 2056, 1084, 2057, 1084, 1084, 1084, 1084, 9, - 2058, 2059, 2060, 2061, 2059, 2059, 2060, 2061, - 2059, 9, 9, 9, 9, 2062, 2063, 2064, - 9, 2065, 2066, 2067, 2068, 2069, 2070, 2071, - 76, 10, 10, 10, 2072, 2073, 9, 2074, - 2075, 9, 80, 92, 9, 2076, 9, 2077, - 48, 48, 9, 9, 9, 2078, 12, 13, - 2079, 2080, 2081, 9, 9, 9, 9, 9, + 47, 610, 611, 612, 613, 614, 615, 616, + 617, 618, 619, 620, 621, 622, 615, 615, + 623, 615, 624, 615, 625, 626, 627, 628, + 628, 628, 628, 627, 629, 628, 628, 628, + 628, 628, 630, 630, 631, 632, 633, 634, + 635, 636, 628, 628, 628, 628, 637, 638, + 628, 639, 640, 628, 628, 641, 641, 641, + 641, 642, 628, 628, 628, 628, 615, 615, + 615, 643, 644, 645, 646, 647, 648, 615, + 628, 628, 628, 615, 615, 615, 628, 628, + 649, 615, 615, 615, 628, 628, 628, 628, + 615, 627, 628, 628, 615, 650, 651, 651, + 650, 651, 651, 650, 615, 615, 615, 615, + 615, 615, 615, 615, 615, 615, 615, 615, + 615, 652, 653, 654, 655, 656, 47, 657, + 658, 0, 0, 659, 660, 661, 662, 663, + 664, 0, 0, 0, 0, 88, 665, 666, + 667, 668, 669, 670, 0, 671, 0, 672, + 673, 674, 675, 676, 677, 678, 679, 680, + 681, 682, 683, 684, 685, 686, 687, 688, + 689, 690, 691, 0, 692, 693, 694, 695, + 696, 697, 698, 699, 700, 701, 702, 703, + 704, 705, 706, 707, 708, 709, 710, 711, + 712, 713, 714, 715, 716, 717, 718, 719, + 720, 721, 722, 723, 724, 725, 726, 727, + 728, 729, 730, 731, 732, 733, 734, 735, + 736, 737, 738, 739, 740, 741, 742, 743, + 744, 745, 746, 747, 748, 749, 750, 751, + 752, 753, 754, 755, 756, 757, 758, 759, + 760, 761, 762, 763, 764, 765, 766, 767, + 768, 769, 770, 771, 772, 773, 774, 75, + 775, 776, 777, 778, 779, 780, 781, 782, + 783, 784, 785, 786, 787, 788, 789, 790, + 791, 792, 793, 794, 795, 796, 797, 798, + 799, 800, 801, 802, 803, 804, 805, 806, + 807, 808, 809, 810, 811, 812, 813, 814, + 815, 816, 817, 818, 819, 820, 821, 822, + 823, 824, 825, 826, 827, 828, 829, 830, + 831, 832, 833, 834, 835, 836, 837, 838, + 839, 840, 841, 842, 843, 844, 845, 846, + 847, 848, 849, 850, 851, 852, 853, 854, + 855, 856, 857, 858, 859, 860, 861, 862, + 863, 864, 865, 866, 867, 868, 869, 870, + 871, 872, 873, 874, 875, 876, 877, 878, + 879, 880, 881, 882, 883, 884, 885, 886, + 887, 888, 889, 890, 891, 892, 893, 894, + 895, 896, 897, 898, 899, 900, 901, 902, + 903, 904, 905, 906, 907, 908, 909, 910, + 911, 912, 913, 914, 615, 615, 615, 615, + 615, 915, 915, 916, 917, 918, 919, 920, + 921, 922, 923, 924, 925, 926, 927, 928, + 929, 930, 931, 932, 933, 934, 935, 936, + 937, 938, 939, 940, 941, 942, 943, 944, + 945, 946, 947, 948, 949, 950, 951, 952, + 953, 954, 955, 956, 957, 958, 959, 960, + 961, 962, 963, 964, 965, 966, 967, 968, + 969, 970, 971, 972, 973, 974, 975, 976, + 977, 978, 979, 980, 981, 982, 983, 984, + 985, 986, 987, 988, 989, 990, 991, 992, + 993, 994, 995, 996, 997, 998, 999, 1000, + 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, + 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, + 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, + 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, + 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, + 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, + 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, + 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, + 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, + 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, + 1081, 0, 1082, 1083, 1084, 1085, 1086, 1087, + 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, + 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, + 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, + 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, + 0, 0, 596, 1120, 1120, 1120, 1120, 1120, + 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, + 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, + 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, + 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, + 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, + 1160, 1161, 1120, 1162, 0, 0, 77, 77, + 11, 0, 628, 615, 615, 615, 615, 628, + 615, 615, 615, 1163, 628, 615, 615, 615, + 615, 615, 615, 628, 628, 628, 628, 628, + 628, 615, 615, 628, 615, 615, 1163, 1164, + 615, 1165, 1166, 1167, 1168, 1169, 1170, 1171, + 1172, 1173, 1174, 1174, 1175, 1176, 1177, 1178, + 1179, 1180, 1181, 1182, 1180, 615, 628, 1180, + 1173, 0, 0, 0, 0, 0, 0, 0, + 0, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 0, 0, 0, 0, + 1183, 1183, 1183, 1183, 1180, 1180, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1184, 1184, 1184, 1184, 1184, 1184, 75, + 75, 1185, 10, 10, 1186, 15, 1187, 77, + 77, 615, 615, 615, 615, 615, 615, 615, + 615, 1188, 1189, 1190, 1187, 1191, 0, 1187, + 1187, 1192, 1192, 1193, 1194, 1195, 1196, 1197, + 1198, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1199, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1200, 1192, 1201, 1202, 1203, 1204, 1188, + 1189, 1190, 1205, 1206, 1207, 1208, 1209, 628, + 615, 615, 615, 615, 615, 628, 615, 615, + 628, 1210, 1210, 1210, 1210, 1210, 1210, 1210, + 1210, 1210, 1210, 10, 1211, 1211, 1187, 1192, + 1192, 1212, 1192, 1192, 1192, 1192, 1213, 1214, + 1215, 1216, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1217, 1218, 1219, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1220, 1221, 1187, 1222, 615, + 615, 615, 615, 615, 615, 615, 1184, 77, + 615, 615, 615, 615, 628, 615, 1199, 1199, + 615, 615, 77, 628, 615, 615, 628, 1192, + 1192, 17, 17, 17, 17, 17, 17, 17, + 17, 17, 17, 1192, 1192, 1192, 1223, 1223, + 1192, 1187, 1187, 1187, 1187, 1187, 1187, 1187, + 1187, 1187, 1187, 1187, 1187, 1187, 1187, 0, + 1224, 1192, 1225, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 615, 628, 615, 615, 628, 615, 615, + 628, 628, 628, 615, 628, 628, 615, 628, + 615, 615, 615, 628, 615, 628, 615, 628, + 615, 628, 615, 615, 0, 0, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1192, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1227, 1227, 1227, 1227, 1227, 1227, 1227, + 1227, 1227, 1227, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 615, 615, 615, 615, + 615, 615, 615, 628, 615, 1228, 1228, 77, + 9, 9, 9, 1228, 0, 0, 628, 1229, + 1229, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 615, + 615, 615, 615, 1228, 615, 615, 615, 615, + 615, 615, 615, 615, 615, 1228, 615, 615, + 615, 1228, 615, 615, 615, 615, 615, 0, + 0, 1180, 1180, 1180, 1180, 1180, 1180, 1180, + 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, + 0, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 628, 628, 628, 0, 0, 1180, + 0, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 0, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 628, 615, 615, 615, + 615, 615, 615, 615, 615, 615, 615, 615, + 615, 615, 615, 1184, 628, 615, 615, 628, + 615, 615, 628, 615, 615, 615, 628, 628, + 628, 1202, 1203, 1204, 615, 615, 615, 628, + 615, 615, 628, 628, 615, 615, 615, 615, + 615, 1226, 1226, 1226, 1230, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 1231, 1232, 346, 346, 346, 346, 346, + 346, 1233, 1234, 346, 1235, 1236, 346, 346, + 346, 346, 346, 1226, 1230, 1237, 346, 1230, + 1230, 1230, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1230, 1230, 1230, 1230, 1238, 1230, + 1230, 346, 615, 628, 615, 615, 1226, 1226, + 1226, 1239, 1240, 1241, 1242, 1243, 1244, 1245, + 1246, 346, 346, 1226, 1226, 1120, 1120, 1247, + 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1120, 596, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 1226, 1230, 1230, 0, 346, 346, + 346, 346, 346, 346, 346, 346, 0, 0, + 346, 346, 0, 0, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 0, 0, 0, 346, + 346, 346, 346, 0, 0, 1248, 346, 1249, + 1230, 1230, 1226, 1226, 1226, 1226, 0, 0, + 1250, 1230, 0, 0, 1251, 1252, 1238, 346, + 0, 0, 0, 0, 0, 0, 0, 0, + 1253, 0, 0, 0, 0, 1254, 1255, 0, + 1256, 346, 346, 1226, 1226, 0, 0, 1247, + 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 346, 346, 11, 11, 1257, 1257, 1257, + 1257, 1257, 1257, 914, 11, 346, 1120, 615, + 0, 0, 1226, 1226, 1230, 0, 346, 346, + 346, 346, 346, 346, 0, 0, 0, 0, + 346, 346, 0, 0, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 1258, 0, 346, 1259, + 0, 346, 346, 0, 0, 1248, 0, 1230, + 1230, 1230, 1226, 1226, 0, 0, 0, 0, + 1226, 1226, 0, 0, 1226, 1226, 1238, 0, + 0, 0, 1226, 0, 0, 0, 0, 0, + 0, 0, 1260, 1261, 1262, 346, 0, 1263, + 0, 0, 0, 0, 0, 0, 0, 1247, + 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1226, 1226, 346, 346, 346, 1226, 1120, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1226, 1226, 1230, 0, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 0, + 346, 346, 346, 0, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 346, 0, 346, 346, + 346, 346, 346, 0, 0, 1248, 346, 1230, + 1230, 1230, 1226, 1226, 1226, 1226, 1226, 0, + 1226, 1226, 1230, 0, 1230, 1230, 1238, 0, + 0, 346, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 1226, 1226, 0, 0, 1247, + 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1120, 11, 0, 0, 0, 0, 0, + 0, 0, 346, 1226, 1226, 1226, 1226, 1226, + 1226, 0, 1226, 1230, 1230, 0, 346, 346, + 346, 346, 346, 346, 346, 346, 0, 0, + 346, 346, 0, 0, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 346, 0, 346, 346, + 346, 346, 346, 0, 0, 1248, 346, 1264, + 1226, 1230, 1226, 1226, 1226, 1226, 0, 0, + 1265, 1266, 0, 0, 1267, 1268, 1238, 0, + 0, 0, 0, 0, 0, 0, 1226, 1269, + 1270, 0, 0, 0, 0, 1271, 1272, 0, + 346, 346, 346, 1226, 1226, 0, 0, 1247, + 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 914, 346, 1257, 1257, 1257, 1257, 1257, + 1257, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1226, 346, 0, 346, 346, + 346, 346, 346, 346, 0, 0, 0, 346, + 346, 346, 0, 1273, 346, 1274, 346, 0, + 0, 0, 346, 346, 0, 346, 0, 346, + 346, 0, 0, 0, 346, 346, 0, 0, + 0, 346, 346, 346, 0, 0, 0, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 0, 0, 0, 0, 1275, + 1230, 1226, 1230, 1230, 0, 0, 0, 1276, + 1277, 1230, 0, 1278, 1279, 1280, 1238, 0, + 0, 346, 0, 0, 0, 0, 0, 0, + 1281, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1247, + 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1257, 1257, 1257, 77, 77, 77, 77, + 77, 77, 11, 77, 0, 0, 0, 0, + 0, 1226, 1230, 1230, 1230, 1226, 346, 346, + 346, 346, 346, 346, 346, 346, 0, 346, + 346, 346, 0, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 0, 0, 0, 346, 1226, + 1226, 1226, 1230, 1230, 1230, 1230, 0, 1282, + 1226, 1283, 0, 1226, 1226, 1226, 1238, 0, + 0, 0, 0, 0, 0, 0, 1284, 1285, + 0, 346, 346, 346, 0, 0, 0, 0, + 0, 346, 346, 1226, 1226, 0, 0, 1247, + 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 0, 0, 0, 0, 0, 0, 0, + 1120, 1286, 1286, 1286, 1286, 1286, 1286, 1286, + 914, 346, 1226, 1230, 1230, 1120, 346, 346, + 346, 346, 346, 346, 346, 346, 0, 346, + 346, 346, 0, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 0, 346, 346, + 346, 346, 346, 0, 0, 1248, 346, 1230, + 1287, 1288, 1230, 1289, 1230, 1230, 0, 1290, + 1291, 1292, 0, 1293, 1294, 1226, 1238, 0, + 0, 0, 0, 0, 0, 0, 1295, 1296, + 0, 0, 0, 0, 0, 0, 0, 346, + 0, 346, 346, 1226, 1226, 0, 0, 1247, + 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 0, 346, 346, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1226, 1226, 1230, 1230, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 0, 346, + 346, 346, 0, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 1238, 1238, 346, 1297, + 1230, 1230, 1226, 1226, 1226, 1226, 0, 1298, + 1299, 1230, 0, 1300, 1301, 1302, 1238, 1303, + 914, 0, 0, 0, 0, 346, 346, 346, + 1304, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 346, 346, 346, 1226, 1226, 0, 0, 1247, + 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 914, 346, 346, 346, 346, 346, + 346, 0, 1226, 1230, 1230, 0, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 0, 0, 0, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 0, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 0, 346, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 0, 0, 0, 1305, 0, 0, 0, 0, + 1306, 1230, 1230, 1226, 1226, 1226, 0, 1226, + 0, 1230, 1307, 1308, 1230, 1309, 1310, 1311, + 1312, 0, 0, 0, 0, 0, 0, 1247, + 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 0, 0, 1230, 1230, 1120, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 1226, 346, 1313, 1226, 1226, 1226, + 1226, 1314, 1314, 1238, 0, 0, 0, 0, + 11, 346, 346, 346, 346, 346, 346, 596, + 1226, 1315, 1315, 1315, 1315, 1226, 1226, 1226, + 1120, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 1120, 1120, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 346, 346, 0, 346, 0, 346, + 346, 346, 346, 346, 0, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 0, 346, 0, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 1226, 346, 1316, 1226, 1226, 1226, + 1226, 1317, 1317, 1238, 1226, 1226, 346, 0, + 0, 346, 346, 346, 346, 346, 0, 596, + 0, 1318, 1318, 1318, 1318, 1226, 1226, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 1319, 1320, 346, + 346, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 914, 914, 914, 1120, 1120, 1120, + 1120, 1120, 1120, 1120, 1120, 1321, 1120, 1120, + 1120, 1120, 1120, 1120, 914, 1120, 914, 914, + 914, 628, 628, 914, 914, 914, 914, 914, + 914, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 914, 628, 914, + 628, 914, 1322, 12, 13, 12, 13, 1230, + 1230, 346, 346, 346, 1323, 346, 346, 346, + 346, 0, 346, 346, 346, 346, 1324, 346, + 346, 346, 346, 1325, 346, 346, 346, 346, + 1326, 346, 346, 346, 346, 1327, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 1328, 346, 346, 346, 0, 0, + 0, 0, 1329, 1330, 1331, 1332, 1333, 1334, + 1335, 1336, 1337, 1330, 1330, 1330, 1330, 1226, + 1230, 1330, 1338, 615, 615, 1238, 1120, 615, + 615, 346, 346, 346, 346, 346, 1226, 1226, + 1226, 1226, 1226, 1226, 1339, 1226, 1226, 1226, + 1226, 0, 1226, 1226, 1226, 1226, 1340, 1226, + 1226, 1226, 1226, 1341, 1226, 1226, 1226, 1226, + 1342, 1226, 1226, 1226, 1226, 1343, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1344, 1226, 1226, 1226, 0, 914, + 914, 914, 914, 914, 914, 914, 914, 628, + 914, 914, 914, 914, 914, 914, 0, 914, + 914, 1120, 1120, 1120, 1120, 1120, 914, 914, + 914, 914, 1120, 1120, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 1345, 1346, + 346, 346, 346, 346, 1347, 1347, 1226, 1348, + 1226, 1226, 1230, 1226, 1226, 1226, 1226, 1226, + 1248, 1347, 1238, 1238, 1230, 1230, 1226, 1226, + 346, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 1120, 1120, 1120, 1120, 1120, + 1120, 346, 346, 346, 346, 346, 346, 1230, + 1230, 1226, 1226, 346, 346, 346, 346, 1226, + 1226, 1226, 346, 1347, 1347, 1347, 346, 346, + 1347, 1347, 1347, 1347, 1347, 1347, 1347, 346, + 346, 346, 1226, 1226, 1226, 1226, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 1226, 1347, 1230, 1226, 1226, + 1347, 1347, 1347, 1347, 1347, 1347, 628, 346, + 1347, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 1347, 1347, 1347, 1226, 914, + 914, 1349, 1350, 1351, 1352, 1353, 1354, 1355, + 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, + 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, + 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, + 1380, 1381, 1382, 1383, 1384, 1385, 1386, 0, + 1387, 0, 0, 0, 0, 0, 1388, 0, + 0, 1389, 1390, 1391, 1392, 1393, 1394, 1395, + 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, + 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, + 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, + 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, + 1428, 1429, 1430, 1431, 1120, 1432, 1433, 1434, + 1435, 1436, 1436, 1436, 1436, 1436, 1436, 1436, + 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, + 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, + 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, + 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, + 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, + 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, + 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, + 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, + 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, + 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, + 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, + 1437, 1438, 1439, 1439, 1439, 1439, 1439, 1439, + 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, + 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, + 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, + 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, + 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, + 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, + 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, + 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, + 1439, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 346, 346, 346, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 0, 346, 0, 346, 346, 346, 346, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 346, 346, 346, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 346, 346, 346, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 0, 346, 0, 346, 346, 346, 346, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 346, 346, 346, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 0, 0, 615, 615, + 615, 1120, 1120, 1120, 1120, 1120, 1120, 1120, + 1120, 1120, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 0, 0, 0, 0, 0, + 0, 1441, 1442, 1443, 1444, 1445, 1446, 1447, + 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, + 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, + 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, + 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, + 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, + 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495, + 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, + 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, + 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, + 1520, 1521, 1522, 1523, 1524, 1525, 1526, 0, + 0, 1527, 1528, 1529, 1530, 1531, 1532, 0, + 0, 1162, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 914, 1120, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 8, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 12, 13, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 1120, 1120, 1120, 1533, + 1533, 1533, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 0, 346, + 346, 346, 346, 1226, 1226, 1238, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 1226, 1226, 1238, 1120, 1120, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 1226, 1226, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 0, 346, + 346, 346, 0, 1226, 1226, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 649, 649, 1230, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1230, + 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1226, + 1230, 1230, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1238, 1226, 1120, 1120, 1120, + 596, 1120, 1120, 1120, 11, 346, 615, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, + 0, 1286, 1286, 1286, 1286, 1286, 1286, 1286, + 1286, 1286, 1286, 0, 0, 0, 0, 0, + 0, 9, 9, 9, 9, 9, 9, 1162, + 9, 9, 9, 9, 649, 649, 649, 1534, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 596, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 1226, 1226, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 1164, 346, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 0, 1226, 1226, 1226, 1230, 1230, 1230, 1230, + 1226, 1226, 1230, 1230, 1230, 0, 0, 0, + 0, 1230, 1230, 1226, 1230, 1230, 1230, 1230, + 1230, 1230, 1163, 615, 628, 0, 0, 0, + 0, 77, 0, 0, 0, 9, 9, 1247, + 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 0, + 0, 346, 346, 346, 346, 346, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 0, 0, 0, 0, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 1257, 0, 0, 0, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 615, 628, 1230, 1230, 1226, 0, 0, 1120, + 1120, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 1230, 1226, + 1230, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 0, 1238, 1347, 1226, 1347, 1347, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1230, 1230, + 1230, 1230, 1230, 1230, 1226, 1226, 615, 615, + 615, 615, 615, 615, 615, 615, 0, 0, + 628, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, + 0, 1120, 1120, 1120, 1120, 1120, 1120, 1120, + 596, 1120, 1120, 1120, 1120, 1120, 1120, 0, + 0, 615, 615, 615, 615, 615, 628, 628, + 628, 628, 628, 628, 615, 615, 628, 915, + 628, 628, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1226, 1226, 1226, 1226, 1230, 1535, 1536, + 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, + 346, 346, 1545, 1546, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 1248, 1547, 1226, + 1226, 1226, 1226, 1548, 1549, 1550, 1551, 1552, + 1553, 1554, 1555, 1556, 1557, 1558, 346, 346, + 346, 346, 346, 346, 346, 0, 0, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 1120, 1120, 1120, 1120, 1120, + 1120, 1120, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 615, 628, 615, 615, + 615, 615, 615, 615, 615, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 0, 0, + 0, 1226, 1226, 1230, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 1230, 1226, 1226, 1226, 1226, 1230, + 1230, 1226, 1226, 1558, 1238, 1226, 1226, 346, + 346, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 1248, + 1230, 1226, 1226, 1230, 1230, 1230, 1226, 1230, + 1226, 1226, 1226, 1558, 1558, 0, 0, 0, + 0, 0, 0, 0, 0, 1120, 1120, 1120, + 1120, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 1230, 1230, 1230, + 1230, 1230, 1230, 1230, 1230, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1230, 1230, 1226, + 1248, 0, 0, 0, 1120, 1120, 1120, 1120, + 1120, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 346, 346, + 346, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 596, 596, 596, 596, 596, 596, 1120, + 1120, 1559, 1560, 1561, 1562, 1563, 1563, 1564, + 1565, 1566, 0, 0, 0, 0, 0, 0, + 0, 1567, 1568, 1569, 1570, 1571, 1572, 1573, + 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, + 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, + 1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597, + 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, + 1606, 1607, 1608, 1609, 0, 0, 1610, 1611, + 1612, 1120, 1120, 1120, 1120, 1120, 1120, 1120, + 1120, 0, 0, 0, 0, 0, 0, 0, + 0, 615, 615, 615, 1120, 641, 628, 628, + 628, 628, 628, 615, 615, 628, 628, 628, + 628, 615, 1230, 641, 641, 641, 641, 641, + 641, 641, 346, 346, 346, 346, 628, 346, + 346, 346, 346, 346, 346, 615, 346, 346, + 1230, 615, 615, 346, 0, 0, 0, 0, + 0, 1613, 1614, 1615, 1616, 1617, 1618, 1619, + 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, + 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, + 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, + 1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, + 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, + 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, + 1668, 1669, 1670, 1671, 1672, 1673, 1674, 1675, + 1676, 1677, 1678, 1679, 1680, 1681, 1682, 1683, + 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, + 1692, 1693, 1694, 1695, 1696, 1697, 1698, 1699, + 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, + 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, + 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, + 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731, + 1732, 1733, 1734, 1735, 1736, 1737, 1738, 1739, + 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, + 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755, + 1756, 1757, 1758, 1759, 1760, 1761, 1762, 1763, + 1764, 1765, 1766, 1767, 1768, 1769, 1770, 1771, + 1772, 1773, 1774, 1775, 1776, 1777, 1778, 1779, + 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, + 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, + 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, + 1804, 615, 615, 628, 615, 615, 615, 615, + 615, 615, 615, 628, 615, 615, 651, 1805, + 628, 630, 615, 615, 615, 615, 615, 615, + 615, 615, 615, 615, 615, 615, 615, 615, + 615, 615, 615, 615, 615, 615, 615, 615, + 615, 615, 615, 615, 615, 615, 615, 615, + 615, 615, 615, 615, 615, 615, 615, 627, + 1164, 1164, 628, 0, 615, 650, 628, 615, + 628, 1806, 1807, 1808, 1809, 1810, 1811, 1812, + 1813, 1814, 1815, 1816, 1817, 1818, 1819, 1820, + 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, + 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836, + 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, + 1845, 1846, 1847, 1848, 1849, 1850, 1851, 1852, + 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, + 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, + 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, + 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, + 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, + 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, + 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, + 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, + 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, + 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, + 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, + 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, + 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, + 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, + 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, + 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, + 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, + 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, + 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, + 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, + 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, + 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028, + 2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, + 2037, 2038, 2039, 2040, 2041, 2042, 2043, 2044, + 2045, 2046, 2047, 2048, 2049, 2050, 2051, 2052, + 2053, 2054, 2055, 2056, 2057, 2058, 2059, 2060, + 2061, 2062, 2063, 2064, 2065, 2066, 2067, 2068, + 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, + 2077, 2078, 2079, 2080, 2081, 2082, 2083, 0, + 0, 2084, 2085, 2086, 2087, 2088, 2089, 0, + 0, 2090, 2091, 2092, 2093, 2094, 2095, 2096, + 2097, 2098, 2099, 2100, 2101, 2102, 2103, 2104, + 2105, 2106, 2107, 2108, 2109, 2110, 2111, 2112, + 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, + 2121, 2122, 2123, 2124, 2125, 2126, 2127, 0, + 0, 2128, 2129, 2130, 2131, 2132, 2133, 0, + 0, 2134, 2135, 2136, 2137, 2138, 2139, 2140, + 2141, 0, 2142, 0, 2143, 0, 2144, 0, + 2145, 2146, 2147, 2148, 2149, 2150, 2151, 2152, + 2153, 2154, 2155, 2156, 2157, 2158, 2159, 2160, + 2161, 2162, 2163, 2164, 2165, 2166, 2167, 2168, + 2169, 2170, 2171, 2172, 2173, 2174, 2175, 0, + 0, 2176, 2177, 2178, 2179, 2180, 2181, 2182, + 2183, 2184, 2185, 2186, 2187, 2188, 2189, 2190, + 2191, 2192, 2193, 2194, 2195, 2196, 2197, 2198, + 2199, 2200, 2201, 2202, 2203, 2204, 2205, 2206, + 2207, 2208, 2209, 2210, 2211, 2212, 2213, 2214, + 2215, 2216, 2217, 2218, 2219, 2220, 2221, 2222, + 2223, 2224, 2225, 2226, 2227, 2228, 0, 2229, + 2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237, + 2238, 2239, 2240, 2241, 2242, 2243, 0, 2244, + 2245, 2246, 2247, 2248, 2249, 2250, 2251, 2252, + 2253, 2254, 2255, 2256, 2257, 0, 0, 2258, + 2259, 2260, 2261, 2262, 2263, 0, 2264, 2265, + 2266, 2267, 2268, 2269, 2270, 2271, 2272, 2273, + 2274, 2275, 2276, 2277, 2278, 2279, 2280, 2281, + 2282, 0, 0, 2283, 2284, 2285, 0, 2286, + 2287, 2288, 2289, 2290, 2291, 2292, 2293, 2294, + 0, 2295, 2296, 2297, 2297, 2297, 2297, 2297, + 2298, 2297, 2297, 2297, 1534, 2299, 2300, 2301, + 2302, 1162, 2303, 1162, 1162, 1162, 1162, 9, + 2304, 2305, 2306, 2307, 2305, 2305, 2306, 2307, + 2305, 9, 9, 9, 9, 2308, 2309, 2310, + 9, 2311, 2312, 2313, 2314, 2315, 2316, 2317, + 76, 10, 10, 10, 2318, 2319, 9, 2320, + 2321, 9, 81, 93, 9, 2322, 9, 2323, + 48, 48, 9, 9, 9, 2324, 12, 13, + 2325, 2326, 2327, 9, 9, 9, 9, 9, 9, 9, 9, 75, 9, 48, 9, 9, - 2082, 9, 9, 9, 9, 9, 9, 9, - 2050, 81, 81, 81, 81, 81, 0, 2083, - 2084, 2085, 2086, 81, 81, 81, 81, 81, - 81, 2087, 2088, 0, 0, 2089, 2090, 2091, - 2092, 2093, 2094, 2095, 2096, 2097, 2098, 2099, - 2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107, - 2108, 2109, 2110, 2111, 2112, 2113, 2114, 2115, - 0, 2116, 2117, 2118, 2119, 2120, 2121, 2122, - 2123, 2124, 2125, 2126, 2127, 2128, 0, 0, + 2328, 9, 9, 9, 9, 9, 9, 9, + 2297, 1534, 1534, 1534, 1534, 1534, 0, 2329, + 2330, 2331, 2332, 1534, 1534, 1534, 1534, 1534, + 1534, 2333, 2334, 0, 0, 2335, 2336, 2337, + 2338, 2339, 2340, 2341, 2342, 2343, 2344, 2345, + 2346, 2347, 2348, 2349, 2350, 2351, 2352, 2353, + 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, + 0, 2362, 2363, 2364, 2365, 2366, 2367, 2368, + 2369, 2370, 2371, 2372, 2373, 2374, 0, 0, 0, 11, 11, 11, 11, 11, 11, 11, - 11, 2129, 11, 11, 11, 11, 11, 11, + 11, 2375, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, - 11, 11, 1189, 11, 11, 11, 11, 11, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 540, 540, 566, 566, 540, 540, 540, - 540, 566, 566, 566, 540, 540, 839, 839, - 839, 839, 540, 839, 839, 839, 566, 566, - 540, 553, 540, 566, 566, 553, 553, 553, - 553, 540, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 2130, 2131, 2132, 2133, 77, 2134, 2135, - 2136, 77, 2137, 2138, 2139, 2139, 2139, 2140, - 2141, 2142, 2142, 2143, 2144, 77, 2145, 2146, - 77, 75, 2147, 2148, 2149, 2149, 2149, 77, - 77, 2150, 2151, 2152, 77, 2153, 77, 2154, - 77, 2153, 77, 2155, 2156, 2157, 2132, 83, - 2158, 2159, 2160, 2161, 2162, 2163, 2164, 2165, - 2166, 2167, 2168, 1085, 2169, 2170, 2171, 2172, - 2173, 2174, 75, 75, 75, 75, 2175, 2176, - 2158, 2168, 2177, 77, 75, 1085, 77, 2178, - 1191, 2179, 2180, 2181, 2182, 2183, 2184, 2185, - 2186, 2187, 2188, 2189, 2190, 2191, 2192, 2193, - 2194, 2195, 2196, 2197, 2198, 2199, 2200, 2201, - 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, - 2210, 2211, 2212, 2213, 2214, 2215, 2216, 2217, - 2218, 2219, 2220, 2221, 2222, 2223, 2224, 2225, - 2226, 1426, 1426, 2227, 2228, 2229, 1426, 1426, - 1426, 2227, 2230, 77, 77, 0, 0, 0, - 0, 2231, 75, 2232, 75, 2233, 77, 77, - 77, 77, 77, 2234, 2235, 77, 77, 77, + 11, 11, 11, 11, 11, 11, 11, 11, + 11, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 615, 615, 641, 641, 615, 615, 615, + 615, 641, 641, 641, 615, 615, 915, 915, + 915, 915, 615, 915, 915, 915, 641, 641, + 615, 628, 615, 641, 641, 628, 628, 628, + 628, 615, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2376, 2377, 2378, 2379, 77, 2380, 2381, + 2382, 77, 2383, 2384, 2385, 2386, 2387, 2388, + 2389, 2390, 2391, 2392, 2393, 77, 2394, 2395, + 77, 75, 2396, 2397, 2398, 2399, 2400, 77, + 77, 2401, 2402, 2403, 77, 2404, 77, 2405, + 77, 2406, 77, 2407, 2408, 2409, 2410, 84, + 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, + 2419, 2420, 2421, 77, 2422, 2423, 2424, 2425, + 2426, 2427, 75, 75, 75, 75, 2428, 2429, + 2430, 2431, 2432, 77, 75, 77, 77, 2433, + 914, 2434, 2435, 2436, 2437, 2438, 2439, 2440, + 2441, 2442, 2443, 2444, 2445, 2446, 2447, 2448, + 2449, 2450, 2451, 2452, 2453, 2454, 2455, 2456, + 2457, 2458, 2459, 2460, 2461, 2462, 2463, 2464, + 2465, 2466, 2467, 2468, 2469, 2470, 2471, 2472, + 2473, 2474, 2475, 2476, 2477, 2478, 2479, 2480, + 2481, 1533, 1533, 1533, 2482, 2483, 1533, 1533, + 1533, 1533, 2484, 77, 77, 0, 0, 0, + 0, 2485, 75, 2486, 75, 2487, 79, 79, + 79, 79, 79, 2488, 2489, 77, 77, 77, 77, 75, 77, 77, 75, 77, 77, 75, - 77, 77, 77, 77, 77, 77, 77, 2236, + 77, 77, 79, 79, 77, 77, 77, 2490, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, - 77, 77, 77, 77, 77, 77, 2237, 2238, - 2239, 2240, 77, 2241, 77, 2242, 77, 77, + 77, 77, 77, 77, 77, 77, 2491, 2492, + 2493, 2494, 77, 2495, 77, 2496, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, - 77, 77, 77, 77, 77, 1109, 75, 75, - 75, 75, 1109, 1109, 1109, 1109, 75, 75, - 1109, 75, 2243, 2243, 2244, 2245, 75, 75, - 75, 2246, 2247, 2243, 2248, 2249, 2243, 75, - 75, 75, 2243, 14, 84, 75, 2243, 2243, - 75, 75, 75, 2243, 2243, 2243, 2243, 75, - 2243, 2243, 2243, 2243, 2250, 2251, 2252, 2253, - 75, 75, 75, 75, 2243, 2254, 2255, 2243, - 2256, 2257, 2243, 2243, 2243, 75, 75, 75, - 75, 75, 2243, 75, 2243, 2258, 2243, 2243, - 2243, 2243, 2259, 2243, 2260, 2261, 2262, 2243, - 2263, 2264, 2265, 2243, 2243, 2243, 2266, 75, - 75, 75, 75, 2243, 2243, 2243, 2243, 75, + 77, 77, 77, 77, 77, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, - 2243, 2267, 2268, 2269, 75, 2270, 2271, 2243, - 2243, 2243, 2243, 2243, 2243, 75, 2272, 2273, - 2274, 2275, 2276, 2277, 2278, 2279, 2280, 2281, - 2282, 2283, 2284, 2285, 2286, 2287, 2288, 2243, - 2243, 2289, 2290, 2291, 2292, 2293, 2294, 2295, - 2296, 2297, 2298, 2243, 2243, 2243, 75, 75, - 2243, 2243, 2299, 2300, 75, 75, 75, 75, - 75, 2243, 75, 75, 75, 75, 75, 75, - 75, 75, 75, 2301, 2243, 75, 75, 2243, - 2243, 2302, 2303, 2243, 2304, 2305, 2306, 2307, - 2308, 2243, 2243, 2309, 2310, 2311, 2312, 2243, - 2243, 2243, 75, 75, 75, 75, 75, 2243, - 2243, 75, 75, 75, 75, 75, 75, 75, - 75, 75, 2243, 2243, 2243, 2243, 2243, 75, - 75, 2243, 2243, 75, 75, 75, 75, 2243, - 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, - 2243, 2313, 2314, 2315, 2316, 2243, 2243, 2243, - 2243, 2243, 2243, 2317, 2318, 2319, 2320, 75, - 75, 2243, 2243, 2321, 2321, 2243, 2321, 2321, - 2243, 2243, 2321, 2321, 2321, 2243, 2321, 2243, - 2321, 77, 77, 77, 77, 77, 77, 77, + 75, 75, 2497, 2497, 2498, 2499, 75, 75, + 75, 2500, 2501, 2497, 2502, 2503, 2497, 75, + 75, 75, 2497, 14, 85, 75, 2497, 2497, + 75, 75, 75, 2497, 2497, 2497, 2497, 75, + 2497, 2497, 2497, 2497, 2504, 2505, 2506, 2507, + 75, 75, 75, 75, 2497, 2508, 2509, 2497, + 2510, 2511, 2497, 2497, 2497, 75, 75, 75, + 75, 75, 2497, 75, 2497, 2512, 2497, 2497, + 2497, 2497, 2513, 2497, 2514, 2515, 2516, 2497, + 2517, 2518, 2519, 2497, 2497, 2497, 2520, 75, + 75, 75, 75, 2497, 2497, 2497, 2497, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 2497, 2521, 2522, 2523, 75, 2524, 2525, 2497, + 2497, 2497, 2497, 2497, 2497, 75, 2526, 2527, + 2528, 2529, 2530, 2531, 2532, 2533, 2534, 2535, + 2536, 2537, 2538, 2539, 2540, 2541, 2542, 2497, + 2497, 2543, 2544, 2545, 2546, 2547, 2548, 2549, + 2550, 2551, 2552, 2497, 2497, 2497, 75, 75, + 2497, 2497, 2553, 2554, 75, 75, 75, 75, + 75, 2497, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 2555, 2497, 75, 75, 2497, + 2497, 2556, 2557, 2497, 2558, 2559, 2560, 2561, + 2562, 2497, 2497, 2563, 2564, 2565, 2566, 2497, + 2497, 2497, 75, 75, 75, 75, 75, 2497, + 2497, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 2497, 2497, 2497, 2497, 2497, 75, + 75, 2497, 2497, 75, 75, 75, 75, 2497, + 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, + 2497, 2567, 2568, 2569, 2570, 2497, 2497, 2497, + 2497, 2497, 2497, 2571, 2572, 2573, 2574, 75, + 75, 2497, 2497, 2497, 2497, 2497, 2497, 2497, + 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, + 2497, 77, 77, 77, 77, 77, 77, 77, 77, 12, 13, 12, 13, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, - 77, 77, 77, 1085, 1085, 77, 77, 77, - 77, 2243, 2243, 77, 77, 77, 77, 77, - 77, 77, 2322, 2323, 77, 77, 77, 77, - 77, 77, 77, 77, 77, 77, 77, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 1085, 1109, 1085, 1085, - 77, 77, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 838, 77, - 1085, 1085, 1085, 1085, 75, 75, 75, 75, + 77, 77, 77, 2575, 2575, 77, 77, 77, + 77, 2497, 2497, 77, 77, 77, 77, 77, + 77, 79, 2576, 2577, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 77, 75, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 79, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 914, 77, + 77, 77, 77, 77, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, - 75, 75, 75, 1109, 1109, 1085, 1085, 1085, + 75, 75, 75, 75, 75, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 79, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 75, 75, 75, + 75, 75, 75, 77, 77, 77, 77, 77, + 77, 77, 2575, 2575, 2575, 2575, 79, 79, + 79, 2575, 79, 79, 2575, 77, 77, 77, + 77, 79, 79, 79, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, - 77, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 77, 77, 1085, 1085, - 77, 77, 77, 77, 77, 1085, 1085, 1085, - 1085, 1085, 1085, 77, 1085, 1109, 1109, 1109, - 1109, 1109, 1109, 1085, 1085, 1085, 1085, 1085, - 1085, 77, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2888,27 +3228,27 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 2324, 2325, 2326, 2327, 2328, 2329, 2330, - 2331, 2332, 2333, 2334, 2335, 2336, 2337, 2338, - 2339, 2340, 2341, 2342, 2343, 2344, 2345, 2346, - 2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, - 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, - 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, - 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, - 2379, 2380, 2381, 2382, 2383, 2384, 2385, 2386, - 2387, 2388, 2389, 2390, 2391, 2392, 2393, 2394, - 2395, 2396, 2397, 2398, 2399, 2400, 2401, 2402, - 2403, 2404, 2405, 2406, 2407, 2408, 2409, 2410, - 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, - 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426, - 2427, 2428, 2429, 2430, 2431, 2432, 2433, 2434, - 2435, 2436, 2437, 2438, 2439, 2440, 2441, 2442, - 2443, 2444, 2445, 2446, 2447, 2448, 2449, 2450, - 2451, 2452, 2453, 2454, 2455, 2456, 2457, 2458, - 2459, 2460, 2461, 2462, 1220, 1220, 1220, 1220, - 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, - 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, - 1220, 77, 77, 77, 77, 77, 77, 77, + 0, 2578, 2579, 2580, 2581, 2582, 2583, 2584, + 2585, 2586, 2587, 2588, 2589, 2590, 2591, 2592, + 2593, 2594, 2595, 2596, 2597, 2598, 2599, 2600, + 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2608, + 2609, 2610, 2611, 2612, 2613, 2614, 2615, 2616, + 2617, 2618, 2619, 2620, 2621, 2622, 2623, 2624, + 2625, 2626, 2627, 2628, 2629, 2630, 2631, 2632, + 2633, 2634, 2635, 2636, 2637, 2638, 2639, 2640, + 2641, 2642, 2643, 2644, 2645, 2646, 2647, 2648, + 2649, 2650, 2651, 2652, 2653, 2654, 2655, 2656, + 2657, 2658, 2659, 2660, 2661, 2662, 2663, 2664, + 2665, 2666, 2667, 2668, 2669, 2670, 2671, 2672, + 2673, 2674, 2675, 2676, 2677, 2678, 2679, 2680, + 2681, 2682, 2683, 2684, 2685, 2686, 2687, 2688, + 2689, 2690, 2691, 2692, 2693, 2694, 2695, 2696, + 2697, 2698, 2699, 2700, 2701, 2702, 2703, 2704, + 2705, 2706, 2707, 2708, 2709, 2710, 2711, 2712, + 2713, 2714, 2715, 2716, 1286, 1286, 1286, 1286, + 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, + 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, + 1286, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, @@ -2929,1334 +3269,1276 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 79, 79, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 79, + 75, 77, 77, 77, 77, 77, 77, 77, + 77, 79, 75, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, - 75, 77, 77, 77, 77, 77, 77, 77, - 77, 77, 75, 77, 77, 77, 77, 77, - 77, 77, 77, 77, 77, 77, 77, 77, - 77, 77, 77, 77, 77, 77, 77, 77, - 77, 77, 77, 77, 77, 77, 77, 77, - 77, 77, 77, 77, 77, 77, 77, 77, - 77, 77, 77, 77, 77, 77, 77, 77, - 77, 77, 77, 77, 77, 77, 77, 77, - 77, 75, 75, 75, 75, 75, 1109, 1109, - 75, 77, 77, 77, 1085, 77, 77, 77, - 77, 77, 77, 77, 77, 77, 77, 77, - 77, 77, 77, 77, 77, 1085, 1085, 1085, - 1085, 1085, 1085, 77, 77, 77, 2463, 77, - 77, 77, 77, 1085, 1085, 1085, 77, 77, - 77, 77, 77, 77, 1085, 1085, 77, 77, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 77, 77, 77, 77, 77, 77, 77, - 77, 77, 77, 77, 77, 77, 77, 77, - 77, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 77, 77, 77, - 77, 77, 77, 77, 77, 77, 77, 77, - 77, 77, 77, 77, 77, 77, 77, 77, - 77, 77, 77, 77, 77, 77, 77, 77, - 75, 77, 77, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 77, 77, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 77, 1085, 1085, 1085, 838, 1085, 1085, - 1085, 1085, 1085, 77, 77, 77, 77, 1085, - 77, 77, 77, 77, 77, 77, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 77, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 2464, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 2464, 2464, 2464, 2464, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 2465, 1085, 1085, - 1085, 12, 13, 12, 13, 12, 13, 12, - 13, 12, 13, 12, 13, 12, 13, 1220, - 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, - 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, - 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, - 1220, 1220, 1220, 1220, 1220, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 2243, 1109, 75, 2321, 2321, 12, 13, - 75, 2321, 2321, 75, 2321, 2321, 2321, 1109, - 1109, 1109, 75, 1109, 2243, 2243, 2321, 2321, - 1109, 1109, 1109, 1109, 1109, 2321, 2321, 2321, - 1109, 75, 1109, 2321, 2321, 2321, 2321, 12, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 75, 75, 75, 2717, 2717, 2718, 2718, + 75, 79, 79, 79, 79, 79, 79, 77, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 77, 2575, 2575, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 2717, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 2575, 79, 79, 79, 79, 79, 79, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 79, 79, 79, 2575, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 2575, 79, 79, 79, 79, 79, + 79, 79, 79, 2575, 2575, 2719, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 2575, 2575, + 79, 79, 79, 79, 79, 2575, 2575, 79, + 79, 79, 79, 79, 79, 79, 79, 2575, + 79, 79, 79, 79, 79, 2575, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 2575, 79, 79, 79, 79, + 79, 79, 79, 2575, 2575, 79, 2575, 79, + 79, 79, 79, 2575, 79, 79, 2575, 79, + 79, 79, 79, 79, 79, 79, 2575, 77, + 77, 79, 79, 2575, 2575, 79, 79, 79, + 79, 79, 79, 79, 77, 79, 77, 79, + 77, 77, 77, 77, 77, 77, 79, 77, + 77, 77, 79, 77, 77, 77, 77, 77, + 77, 2575, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 79, 79, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 79, 77, 77, + 79, 77, 77, 77, 77, 2575, 77, 2575, + 77, 77, 77, 77, 2575, 2575, 2575, 77, + 2575, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 79, 79, 79, 79, + 79, 12, 13, 12, 13, 12, 13, 12, + 13, 12, 13, 12, 13, 12, 13, 1286, + 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, + 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, + 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, + 1286, 1286, 1286, 1286, 1286, 77, 2575, 2575, + 2575, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 79, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 2575, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 2575, 2497, 75, 75, 2497, 2497, 12, 13, + 75, 2497, 2497, 75, 2497, 2497, 2497, 75, + 75, 75, 75, 75, 2497, 2497, 2497, 2497, + 75, 75, 75, 75, 75, 2497, 2497, 2497, + 75, 75, 75, 2497, 2497, 2497, 2497, 12, 13, 12, 13, 12, 13, 12, 13, 12, - 13, 1109, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 1109, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 75, 75, 1109, 1109, 1109, 1109, 1109, - 1109, 1109, 1109, 75, 75, 1109, 1109, 1109, - 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 75, 75, 1109, 1109, 1109, 1109, 1109, - 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 1109, 75, 1109, 1109, 75, 75, 1109, - 75, 1109, 75, 1109, 1109, 75, 75, 1109, - 1109, 75, 75, 1109, 1109, 75, 75, 1109, - 1109, 75, 75, 1109, 1109, 1109, 1109, 1109, - 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 1109, 1109, 1109, 1109, 75, 75, 1109, - 1109, 75, 1109, 75, 12, 13, 12, 13, + 13, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 2717, 2717, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 12, 13, 12, 13, + 12, 13, 12, 13, 12, 13, 12, 13, 12, 13, 12, 13, 12, 13, 12, 13, - 12, 13, 12, 13, 1258, 1259, 1258, 1259, - 12, 13, 75, 1109, 2321, 2321, 2321, 2321, - 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2243, - 2243, 2321, 2321, 2321, 2321, 2321, 2321, 2321, - 2321, 1109, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 2321, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 2321, 2321, 2321, 2321, 2321, 2321, 1109, - 1109, 1109, 2321, 1109, 1109, 1109, 1109, 2321, - 2321, 2321, 2243, 2243, 75, 2243, 2243, 75, - 75, 12, 13, 1258, 1259, 2321, 1109, 1109, - 1109, 1109, 2321, 1109, 2321, 2321, 2321, 1109, - 1109, 2321, 2321, 1109, 75, 1109, 1109, 1109, - 1109, 1109, 1109, 1109, 1109, 2321, 2243, 2243, - 2243, 2243, 2243, 75, 75, 12, 13, 1109, - 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 1109, 1109, 2321, 2321, 2466, 2321, 2321, - 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, - 2321, 2321, 2321, 2321, 2321, 2321, 1109, 2243, - 2243, 2321, 2243, 75, 75, 2243, 75, 2243, - 1109, 75, 2243, 75, 2243, 2243, 2321, 2321, - 75, 75, 75, 75, 1109, 2321, 2321, 1109, - 1109, 1109, 1109, 1109, 1109, 2243, 2243, 2243, - 1109, 1109, 1109, 1109, 1109, 1109, 1109, 75, - 75, 75, 75, 75, 75, 1109, 1109, 1109, - 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, - 2321, 2321, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 1109, 1109, 1109, 1109, 2321, 2321, 75, - 75, 1109, 1109, 2243, 2243, 2243, 2243, 1109, - 2243, 2243, 75, 75, 2243, 2467, 2468, 2469, - 75, 1109, 2321, 2321, 2321, 2321, 2321, 2321, - 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, - 2321, 2321, 2321, 2321, 2243, 2243, 2321, 2321, - 2243, 2243, 2243, 2243, 2243, 2243, 2321, 2321, - 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, - 2321, 2321, 2321, 2321, 2321, 1109, 1109, 2321, - 2321, 2321, 2321, 2321, 2321, 2321, 2321, 1109, - 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, - 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, - 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, - 2321, 2321, 2243, 2243, 2243, 2243, 2321, 2321, - 2321, 2321, 2321, 2321, 2243, 2243, 2243, 2243, - 1109, 1109, 1109, 1109, 1109, 2470, 2471, 2243, - 1109, 1109, 1109, 2321, 2321, 2321, 2321, 2321, - 1109, 1109, 1109, 1109, 1109, 2321, 2321, 2243, - 75, 75, 75, 75, 2321, 1109, 1109, 75, - 2321, 2321, 2321, 2321, 2321, 1109, 2321, 75, - 75, 1085, 1085, 1085, 1085, 1085, 1085, 77, - 77, 1085, 1085, 1085, 1085, 1085, 77, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 77, 77, - 1085, 1085, 1085, 1085, 1085, 1085, 77, 77, - 77, 77, 77, 77, 77, 1085, 1085, 77, - 77, 1109, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, - 1109, 1109, 1109, 1109, 1109, 1109, 1085, 1085, - 1109, 1109, 1109, 1109, 1109, 1109, 1085, 77, - 77, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 0, 0, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 0, 0, 0, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 0, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1085, 1085, 1085, - 1085, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 2472, 2473, 2474, 2475, 2476, 2477, 2478, - 2479, 2480, 2481, 2482, 2483, 2484, 2485, 2486, - 2487, 2488, 2489, 2490, 2491, 2492, 2493, 2494, - 2495, 2496, 2497, 2498, 2499, 2500, 2501, 2502, - 2503, 2504, 2505, 2506, 2507, 2508, 2509, 2510, - 2511, 2512, 2513, 2514, 2515, 2516, 2517, 2518, - 0, 2519, 2520, 2521, 2522, 2523, 2524, 2525, - 2526, 2527, 2528, 2529, 2530, 2531, 2532, 2533, - 2534, 2535, 2536, 2537, 2538, 2539, 2540, 2541, - 2542, 2543, 2544, 2545, 2546, 2547, 2548, 2549, - 2550, 2551, 2552, 2553, 2554, 2555, 2556, 2557, - 2558, 2559, 2560, 2561, 2562, 2563, 2564, 2565, - 0, 2566, 2567, 2568, 2569, 2570, 2571, 2572, - 2573, 2574, 2575, 2576, 2577, 2578, 2579, 2580, - 2581, 2582, 214, 2583, 2584, 214, 2585, 2586, - 214, 214, 214, 214, 214, 2587, 2588, 2589, - 2590, 2591, 2592, 2593, 2594, 2595, 2596, 2597, - 2598, 2599, 2600, 2601, 2602, 2603, 2604, 2605, - 2606, 2607, 2608, 2609, 2610, 2611, 2612, 2613, - 2614, 2615, 2616, 2617, 2618, 2619, 2620, 2621, - 2622, 2623, 2624, 2625, 2626, 2627, 2628, 2629, - 2630, 2631, 2632, 2633, 2634, 2635, 2636, 2637, - 2638, 2639, 2640, 2641, 2642, 2643, 2644, 2645, - 2646, 2647, 2648, 2649, 2650, 2651, 2652, 2653, - 2654, 2655, 2656, 2657, 2658, 2659, 2660, 2661, - 2662, 2663, 2664, 2665, 2666, 2667, 2668, 2669, - 2670, 2671, 2672, 2673, 2674, 2675, 2676, 2677, - 2678, 2679, 2680, 2681, 2682, 2683, 2684, 2685, - 2686, 2687, 2688, 2689, 2690, 214, 77, 77, - 1085, 77, 77, 1085, 2691, 2692, 2693, 2694, - 540, 540, 540, 2695, 2696, 0, 0, 0, - 0, 0, 9, 9, 9, 9, 1427, 9, - 9, 2697, 2698, 2699, 2700, 2701, 2702, 2703, - 2704, 2705, 2706, 2707, 2708, 2709, 2710, 2711, - 2712, 2713, 2714, 2715, 2716, 2717, 2718, 2719, - 2720, 2721, 2722, 2723, 2724, 2725, 2726, 2727, - 2728, 2729, 2730, 2731, 2732, 2733, 2734, 0, - 2735, 0, 0, 0, 0, 0, 2736, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 1160, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 0, 0, 0, 0, 0, 0, 0, - 2737, 1044, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 1168, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 540, 540, 540, 540, 540, 540, 540, - 540, 540, 540, 540, 540, 540, 540, 540, - 540, 540, 540, 540, 540, 540, 540, 540, - 540, 540, 540, 540, 540, 540, 540, 540, - 540, 9, 9, 80, 92, 80, 92, 9, - 9, 9, 80, 92, 9, 80, 92, 1428, - 1428, 1428, 1428, 9, 1428, 1428, 1428, 9, - 1084, 9, 9, 1084, 9, 80, 92, 9, - 9, 80, 92, 12, 13, 12, 13, 12, + 12, 13, 75, 75, 2497, 2497, 2497, 2497, + 2497, 2497, 75, 2497, 2497, 2497, 2497, 2497, + 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, + 2497, 75, 75, 75, 75, 75, 75, 75, + 75, 2497, 75, 75, 75, 75, 75, 75, + 75, 2497, 2497, 2497, 2497, 2497, 2497, 75, + 75, 75, 2497, 75, 75, 75, 75, 2497, + 2497, 2497, 2497, 2497, 75, 2497, 2497, 75, + 75, 12, 13, 12, 13, 2497, 75, 75, + 75, 75, 2497, 75, 2497, 2497, 2497, 75, + 75, 2497, 2497, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 2497, 2497, 2497, + 2497, 2497, 2497, 75, 75, 12, 13, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 2497, 2497, 2720, 2497, 2497, + 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, + 2497, 2497, 2497, 2497, 2497, 2497, 75, 2497, + 2497, 2497, 2497, 75, 75, 2497, 75, 2497, + 75, 75, 2497, 75, 2497, 2497, 2497, 2497, + 75, 75, 75, 75, 75, 2497, 2497, 75, + 75, 75, 75, 75, 75, 2497, 2497, 2497, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 2497, 2497, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 2497, 2497, 75, + 75, 75, 75, 2497, 2497, 2497, 2497, 75, + 2497, 2497, 75, 75, 2497, 2721, 2722, 2723, + 75, 75, 2497, 2497, 2497, 2497, 2497, 2497, + 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, + 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, + 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, + 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, + 2497, 2497, 2497, 2497, 2497, 75, 75, 2497, + 2497, 2497, 2497, 2497, 2497, 2497, 2497, 75, + 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, + 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, + 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, + 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, + 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, + 75, 75, 75, 75, 75, 2724, 2725, 2497, + 75, 75, 75, 2497, 2497, 2497, 2497, 2497, + 75, 75, 75, 75, 75, 2497, 2497, 2497, + 75, 75, 75, 75, 2497, 75, 75, 75, + 2497, 2497, 2497, 2497, 2497, 75, 2497, 75, + 75, 77, 77, 77, 77, 77, 79, 79, + 79, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 2575, 2575, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 75, 75, + 75, 75, 75, 75, 75, 75, 77, 77, + 75, 75, 75, 75, 75, 75, 77, 77, + 77, 2575, 77, 77, 77, 77, 2575, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 0, 0, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 0, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 2726, + 77, 2727, 2728, 2729, 2730, 2731, 2732, 2733, + 2734, 2735, 2736, 2737, 2738, 2739, 2740, 2741, + 2742, 2743, 2744, 2745, 2746, 2747, 2748, 2749, + 2750, 2751, 2752, 2753, 2754, 2755, 2756, 2757, + 2758, 2759, 2760, 2761, 2762, 2763, 2764, 2765, + 2766, 2767, 2768, 2769, 2770, 2771, 2772, 2773, + 0, 2774, 2775, 2776, 2777, 2778, 2779, 2780, + 2781, 2782, 2783, 2784, 2785, 2786, 2787, 2788, + 2789, 2790, 2791, 2792, 2793, 2794, 2795, 2796, + 2797, 2798, 2799, 2800, 2801, 2802, 2803, 2804, + 2805, 2806, 2807, 2808, 2809, 2810, 2811, 2812, + 2813, 2814, 2815, 2816, 2817, 2818, 2819, 2820, + 0, 2821, 2822, 2823, 2824, 2825, 2826, 2827, + 2828, 2829, 2830, 2831, 2832, 2833, 2834, 2835, + 2836, 2837, 2838, 2839, 2840, 2841, 2842, 2843, + 2844, 2845, 2846, 2847, 2848, 2849, 2850, 2851, + 2852, 2853, 2854, 2855, 2856, 2857, 2858, 2859, + 2860, 2861, 2862, 2863, 2864, 2865, 2866, 2867, + 2868, 2869, 2870, 2871, 2872, 2873, 2874, 2875, + 2876, 2877, 2878, 2879, 2880, 2881, 2882, 2883, + 2884, 2885, 2886, 2887, 2888, 2889, 2890, 2891, + 2892, 2893, 2894, 2895, 2896, 2897, 2898, 2899, + 2900, 2901, 2902, 2903, 2904, 2905, 2906, 2907, + 2908, 2909, 2910, 2911, 2912, 2913, 2914, 2915, + 2916, 2917, 2918, 2919, 2920, 2921, 2922, 2923, + 2924, 2925, 2926, 2927, 2928, 2929, 2930, 2931, + 2932, 2933, 2934, 2935, 2936, 2937, 2938, 2939, + 2940, 2941, 2942, 2943, 2944, 2945, 2946, 2947, + 2948, 2949, 2950, 2951, 2952, 2953, 77, 77, + 77, 77, 77, 77, 2954, 2955, 2956, 2957, + 615, 615, 615, 2958, 2959, 0, 0, 0, + 0, 0, 9, 9, 9, 9, 1286, 9, + 9, 2960, 2961, 2962, 2963, 2964, 2965, 2966, + 2967, 2968, 2969, 2970, 2971, 2972, 2973, 2974, + 2975, 2976, 2977, 2978, 2979, 2980, 2981, 2982, + 2983, 2984, 2985, 2986, 2987, 2988, 2989, 2990, + 2991, 2992, 2993, 2994, 2995, 2996, 2997, 0, + 2998, 0, 0, 0, 0, 0, 2999, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 0, 0, 0, 0, 0, 0, 0, + 3000, 1120, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 1238, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 0, 346, 346, 346, 346, 346, 346, 346, + 0, 346, 346, 346, 346, 346, 346, 346, + 0, 346, 346, 346, 346, 346, 346, 346, + 0, 346, 346, 346, 346, 346, 346, 346, + 0, 346, 346, 346, 346, 346, 346, 346, + 0, 346, 346, 346, 346, 346, 346, 346, + 0, 346, 346, 346, 346, 346, 346, 346, + 0, 615, 615, 615, 615, 615, 615, 615, + 615, 615, 615, 615, 615, 615, 615, 615, + 615, 615, 615, 615, 615, 615, 615, 615, + 615, 615, 615, 615, 615, 615, 615, 615, + 615, 9, 9, 81, 93, 81, 93, 9, + 9, 9, 81, 93, 9, 81, 93, 9, + 9, 9, 9, 9, 9, 9, 9, 9, + 1162, 9, 9, 1162, 9, 81, 93, 9, + 9, 81, 93, 12, 13, 12, 13, 12, 13, 12, 13, 9, 9, 9, 9, 9, - 522, 9, 9, 9, 9, 9, 9, 9, - 9, 9, 9, 1084, 1084, 9, 9, 9, - 9, 1084, 9, 2061, 1428, 9, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 0, 1085, 1085, 1085, 1085, - 2738, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 2739, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 2740, 2741, 2742, 2743, 2744, 2745, 2746, - 2747, 2748, 2749, 2750, 2751, 2752, 2753, 2754, - 2755, 2756, 2757, 2758, 2759, 2760, 2761, 2762, - 2763, 2764, 2765, 2766, 2767, 2768, 2769, 2770, - 2771, 2772, 2773, 2774, 2775, 2776, 2777, 2778, - 2779, 2780, 2781, 2782, 2783, 2784, 2785, 2786, - 2787, 2788, 2789, 2790, 2791, 2792, 2793, 2794, - 2795, 2796, 2797, 2798, 2799, 2800, 2801, 2802, - 2803, 2804, 2805, 2806, 2807, 2808, 2809, 2810, - 2811, 2812, 2813, 2814, 2815, 2816, 2817, 2818, - 2819, 2820, 2821, 2822, 2823, 2824, 2825, 2826, - 2827, 2828, 2829, 2830, 2831, 2832, 2833, 2834, - 2835, 2836, 2837, 2838, 2839, 2840, 2841, 2842, - 2843, 2844, 2845, 2846, 2847, 2848, 2849, 2850, - 2851, 2852, 2853, 2854, 2855, 2856, 2857, 2858, - 2859, 2860, 2861, 2862, 2863, 2864, 2865, 2866, - 2867, 2868, 2869, 2870, 2871, 2872, 2873, 2874, - 2875, 2876, 2877, 2878, 2879, 2880, 2881, 2882, - 2883, 2884, 2885, 2886, 2887, 2888, 2889, 2890, - 2891, 2892, 2893, 2894, 2895, 2896, 2897, 2898, - 2899, 2900, 2901, 2902, 2903, 2904, 2905, 2906, - 2907, 2908, 2909, 2910, 2911, 2912, 2913, 2914, - 2915, 2916, 2917, 2918, 2919, 2920, 2921, 2922, - 2923, 2924, 2925, 2926, 2927, 2928, 2929, 2930, - 2931, 2932, 2933, 2934, 2935, 2936, 2937, 2938, - 2939, 2940, 2941, 2942, 2943, 2944, 2945, 2946, - 2947, 2948, 2949, 2950, 2951, 2952, 2953, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 0, 0, 0, - 0, 2954, 1428, 1428, 1428, 1085, 1179, 1160, - 2227, 1258, 1259, 1258, 1259, 1258, 1259, 1258, - 1259, 1258, 1259, 1085, 1085, 1258, 1259, 1258, - 1259, 1258, 1259, 1258, 1259, 1424, 2955, 2956, - 2956, 1085, 2227, 2227, 2227, 2227, 2227, 2227, - 2227, 2227, 2227, 2957, 1087, 552, 1086, 2958, - 2958, 1424, 1179, 1179, 1179, 1179, 1179, 2959, - 1085, 2960, 2961, 2962, 1179, 1160, 1428, 1085, - 77, 0, 1160, 1160, 1160, 1160, 1160, 2963, - 1160, 1160, 1160, 1160, 2964, 2965, 2966, 2967, - 2968, 2969, 2970, 2971, 2972, 2973, 2974, 2975, - 2976, 2977, 2978, 2979, 2980, 2981, 2982, 2983, - 2984, 2985, 2986, 2987, 1160, 2988, 2989, 2990, - 2991, 2992, 2993, 1160, 1160, 1160, 1160, 1160, - 2994, 2995, 2996, 2997, 2998, 2999, 3000, 3001, - 3002, 3003, 3004, 3005, 3006, 3007, 3008, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 3009, 1160, 1160, - 0, 0, 3010, 3011, 3012, 3013, 3014, 3015, - 3016, 1424, 1160, 1160, 1160, 1160, 1160, 3017, - 1160, 1160, 1160, 1160, 3018, 3019, 3020, 3021, - 3022, 3023, 3024, 3025, 3026, 3027, 3028, 3029, - 3030, 3031, 3032, 3033, 3034, 3035, 3036, 3037, - 3038, 3039, 3040, 3041, 1160, 3042, 3043, 3044, - 3045, 3046, 3047, 1160, 1160, 1160, 1160, 1160, - 3048, 3049, 3050, 3051, 3052, 3053, 3054, 3055, - 3056, 3057, 3058, 3059, 3060, 3061, 3062, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 3063, 3064, 3065, 3066, 1160, 3067, 1160, 1160, - 3068, 3069, 3070, 3071, 1428, 1179, 3072, 3073, - 3074, 0, 0, 0, 0, 0, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 0, - 0, 0, 3075, 3076, 3077, 3078, 3079, 3080, - 3081, 3082, 3083, 3084, 3085, 3086, 3087, 3088, - 3089, 3090, 3091, 3092, 3093, 3094, 3095, 3096, - 3097, 3098, 3099, 3100, 3101, 3102, 3103, 3104, - 3105, 3106, 3107, 3108, 3109, 3110, 3111, 3112, - 3113, 3114, 3115, 3116, 3117, 3118, 3119, 3120, - 3121, 3122, 3123, 3124, 3125, 3126, 3127, 3128, - 3129, 3130, 3131, 3132, 3133, 3134, 3135, 3136, - 3137, 3138, 3139, 3140, 3141, 3142, 3143, 3144, - 3145, 3146, 3147, 3148, 3149, 3150, 3151, 3152, - 3153, 3154, 3155, 3156, 3157, 3158, 3159, 3160, - 3161, 3162, 3163, 3164, 3165, 3166, 3167, 3168, - 0, 1191, 1191, 3169, 3170, 3171, 3172, 3173, - 3174, 3175, 3176, 3177, 3178, 3179, 3180, 3181, - 3182, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 3183, 3184, 3185, 3186, 3187, 3188, 3189, - 3190, 3191, 3192, 3193, 3194, 3195, 3196, 3197, - 3198, 3199, 3200, 3201, 3202, 3203, 3204, 3205, - 3206, 3207, 3208, 3209, 3210, 3211, 3212, 3213, - 0, 3214, 3215, 3216, 3217, 3218, 3219, 3220, - 3221, 3222, 3223, 3224, 3225, 3226, 3227, 3228, - 3229, 3230, 3231, 3232, 3233, 3234, 3235, 3236, - 3237, 3238, 3239, 3240, 3241, 3242, 3243, 3244, - 3245, 3246, 3247, 3248, 3249, 3250, 3251, 3252, - 3253, 1190, 1190, 1190, 1190, 1190, 1190, 1190, - 1190, 3254, 3255, 3256, 3257, 3258, 3259, 3260, - 3261, 3262, 3263, 3264, 3265, 3266, 3267, 3268, - 3269, 3270, 3271, 3272, 3273, 3274, 3275, 3276, - 3277, 3278, 3279, 3280, 3281, 3282, 3283, 3284, - 3285, 3286, 3287, 3288, 3289, 3290, 3291, 3292, - 3293, 3294, 3295, 3296, 3297, 3298, 3299, 3300, - 1191, 3301, 3302, 3303, 3304, 3305, 3306, 3307, - 3308, 3309, 3310, 3311, 3312, 3313, 3314, 3315, - 3316, 3317, 3318, 3319, 3320, 3321, 3322, 3323, - 3324, 3325, 3326, 3327, 3328, 3329, 3330, 3331, - 3332, 3333, 3334, 3335, 3336, 3337, 3338, 3339, - 3340, 3341, 3342, 3343, 3344, 3345, 3346, 3347, - 3348, 3349, 3350, 3351, 3352, 3353, 3354, 3355, - 3356, 3357, 3358, 3359, 3360, 3361, 3362, 3363, - 3364, 3365, 3366, 3367, 3368, 3369, 3370, 3371, - 3372, 3373, 3374, 3375, 3376, 3377, 3378, 3379, - 3380, 3381, 3382, 3383, 3384, 3385, 3386, 3387, - 3388, 3389, 3390, 3391, 3392, 3393, 3394, 3395, - 3396, 3397, 3398, 3399, 3400, 3401, 3402, 3403, - 3404, 3405, 3406, 3407, 3408, 3409, 3410, 3411, - 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, - 3420, 3421, 3422, 3423, 3424, 3425, 3426, 3427, - 0, 3428, 3429, 3430, 3431, 3432, 3433, 3434, - 3435, 3436, 3437, 3438, 3439, 3440, 3441, 3442, - 3443, 3444, 3445, 3446, 3447, 3448, 3449, 3450, - 3451, 3452, 3453, 3454, 3455, 3456, 3457, 3458, - 3459, 3460, 3461, 3462, 3463, 3464, 3465, 3466, - 3467, 3468, 3469, 3470, 3471, 3472, 3473, 3474, - 3475, 3476, 3477, 3478, 3479, 3480, 3481, 3482, - 3483, 3484, 3485, 3486, 3487, 3488, 3489, 3490, - 3491, 3492, 3493, 3494, 3495, 3496, 3497, 3498, - 3499, 3500, 3501, 3502, 3503, 3504, 3505, 3506, - 3507, 3508, 3509, 3510, 3511, 3512, 3513, 3514, - 3515, 3516, 3517, 3518, 3519, 3520, 3521, 3522, - 3523, 3524, 3525, 3526, 3527, 3528, 3529, 3530, - 3531, 3532, 3533, 3534, 3535, 3536, 3537, 3538, - 3539, 3540, 3541, 3542, 3543, 3544, 3545, 3546, - 3547, 3548, 3549, 3550, 3551, 3552, 3553, 3554, - 3555, 3556, 3557, 3558, 3559, 3560, 3561, 3562, - 3563, 3564, 3565, 3566, 3567, 3568, 3569, 3570, - 3571, 3572, 3573, 3574, 3575, 3576, 3577, 3578, - 3579, 3580, 3581, 3582, 3583, 3584, 3585, 3586, - 3587, 3588, 3589, 3590, 3591, 3592, 3593, 3594, - 3595, 3596, 3597, 3598, 3599, 3600, 3601, 3602, - 3603, 3604, 3605, 3606, 3607, 3608, 3609, 3610, - 3611, 3612, 3613, 3614, 3615, 3616, 3617, 3618, - 3619, 3620, 3621, 3622, 3623, 3624, 3625, 3626, - 3627, 3628, 3629, 3630, 3631, 3632, 3633, 3634, - 3635, 3636, 3637, 3638, 3639, 3640, 3641, 3642, - 3643, 3644, 3645, 3646, 3647, 3648, 3649, 3650, - 3651, 3652, 3653, 3654, 3655, 3656, 3657, 3658, - 3659, 3660, 3661, 3662, 3663, 3664, 3665, 3666, - 3667, 3668, 3669, 3670, 3671, 3672, 3673, 3674, - 3675, 3676, 3677, 3678, 3679, 3680, 3681, 3682, - 3683, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1179, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 523, 523, 523, 523, 523, 523, 1044, - 1044, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1179, 1428, 1428, - 1428, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 1160, 1160, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 3684, 3685, 3686, 3687, 3688, 3689, 3690, - 3691, 3692, 3693, 3694, 3695, 3696, 3697, 3698, - 3699, 3700, 3701, 3702, 3703, 3704, 3705, 3706, - 3707, 3708, 3709, 3710, 3711, 3712, 3713, 3714, - 3715, 3716, 3717, 3718, 3719, 3720, 3721, 3722, - 3723, 3724, 3725, 3726, 3727, 3728, 3729, 1160, - 540, 839, 839, 839, 9, 540, 540, 540, - 540, 540, 540, 540, 540, 540, 540, 9, - 522, 3730, 3731, 3732, 3733, 3734, 3735, 3736, - 3737, 3738, 3739, 3740, 3741, 3742, 3743, 3744, - 3745, 3746, 3747, 3748, 3749, 3750, 3751, 3752, - 3753, 3754, 3755, 3756, 3757, 3758, 3759, 540, - 540, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 1426, - 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, - 1426, 540, 540, 1044, 1044, 1044, 1044, 1044, - 1044, 0, 0, 0, 0, 0, 0, 0, + 595, 9, 9, 9, 9, 9, 9, 9, + 9, 9, 9, 1162, 1162, 9, 9, 9, + 9, 1162, 9, 2307, 9, 9, 9, 9, + 9, 9, 9, 9, 9, 9, 9, 9, + 9, 77, 77, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 0, 3001, 3001, 3001, 3001, + 3002, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3003, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3004, 3005, 3006, 3007, 3008, 3009, 3010, + 3011, 3012, 3013, 3014, 3015, 3016, 3017, 3018, + 3019, 3020, 3021, 3022, 3023, 3024, 3025, 3026, + 3027, 3028, 3029, 3030, 3031, 3032, 3033, 3034, + 3035, 3036, 3037, 3038, 3039, 3040, 3041, 3042, + 3043, 3044, 3045, 3046, 3047, 3048, 3049, 3050, + 3051, 3052, 3053, 3054, 3055, 3056, 3057, 3058, + 3059, 3060, 3061, 3062, 3063, 3064, 3065, 3066, + 3067, 3068, 3069, 3070, 3071, 3072, 3073, 3074, + 3075, 3076, 3077, 3078, 3079, 3080, 3081, 3082, + 3083, 3084, 3085, 3086, 3087, 3088, 3089, 3090, + 3091, 3092, 3093, 3094, 3095, 3096, 3097, 3098, + 3099, 3100, 3101, 3102, 3103, 3104, 3105, 3106, + 3107, 3108, 3109, 3110, 3111, 3112, 3113, 3114, + 3115, 3116, 3117, 3118, 3119, 3120, 3121, 3122, + 3123, 3124, 3125, 3126, 3127, 3128, 3129, 3130, + 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, + 3139, 3140, 3141, 3142, 3143, 3144, 3145, 3146, + 3147, 3148, 3149, 3150, 3151, 3152, 3153, 3154, + 3155, 3156, 3157, 3158, 3159, 3160, 3161, 3162, + 3163, 3164, 3165, 3166, 3167, 3168, 3169, 3170, + 3171, 3172, 3173, 3174, 3175, 3176, 3177, 3178, + 3179, 3180, 3181, 3182, 3183, 3184, 3185, 3186, + 3187, 3188, 3189, 3190, 3191, 3192, 3193, 3194, + 3195, 3196, 3197, 3198, 3199, 3200, 3201, 3202, + 3203, 3204, 3205, 3206, 3207, 3208, 3209, 3210, + 3211, 3212, 3213, 3214, 3215, 3216, 3217, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 0, 0, 0, + 0, 3218, 3219, 3219, 3219, 3001, 3220, 3221, + 3222, 3223, 3224, 3223, 3224, 3223, 3224, 3223, + 3224, 3223, 3224, 3001, 3001, 3223, 3224, 3223, + 3224, 3223, 3224, 3223, 3224, 3225, 3226, 3227, + 3227, 3001, 3222, 3222, 3222, 3222, 3222, 3222, + 3222, 3222, 3222, 3228, 1164, 627, 1163, 3229, + 3229, 3230, 3220, 3220, 3220, 3220, 3220, 3231, + 3001, 3232, 3233, 3234, 3220, 3221, 3235, 3001, + 77, 0, 3221, 3221, 3221, 3221, 3221, 3236, + 3221, 3221, 3221, 3221, 3237, 3238, 3239, 3240, + 3241, 3242, 3243, 3244, 3245, 3246, 3247, 3248, + 3249, 3250, 3251, 3252, 3253, 3254, 3255, 3256, + 3257, 3258, 3259, 3260, 3221, 3261, 3262, 3263, + 3264, 3265, 3266, 3221, 3221, 3221, 3221, 3221, + 3267, 3268, 3269, 3270, 3271, 3272, 3273, 3274, + 3275, 3276, 3277, 3278, 3279, 3280, 3281, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3282, 3221, 3221, + 0, 0, 3283, 3284, 3285, 3286, 3287, 3288, + 3289, 3225, 3221, 3221, 3221, 3221, 3221, 3290, + 3221, 3221, 3221, 3221, 3291, 3292, 3293, 3294, + 3295, 3296, 3297, 3298, 3299, 3300, 3301, 3302, + 3303, 3304, 3305, 3306, 3307, 3308, 3309, 3310, + 3311, 3312, 3313, 3314, 3221, 3315, 3316, 3317, + 3318, 3319, 3320, 3221, 3221, 3221, 3221, 3221, + 3321, 3322, 3323, 3324, 3325, 3326, 3327, 3328, + 3329, 3330, 3331, 3332, 3333, 3334, 3335, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3336, 3337, 3338, 3339, 3221, 3340, 3221, 3221, + 3341, 3342, 3343, 3344, 3219, 3220, 3345, 3346, + 3347, 0, 0, 0, 0, 0, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 0, 3348, 3349, 3350, 3351, 3352, 3353, + 3354, 3355, 3356, 3357, 3358, 3359, 3360, 3361, + 3362, 3363, 3364, 3365, 3366, 3367, 3368, 3369, + 3370, 3371, 3372, 3373, 3374, 3375, 3376, 3377, + 3378, 3379, 3380, 3381, 3382, 3383, 3384, 3385, + 3386, 3387, 3388, 3389, 3390, 3391, 3392, 3393, + 3394, 3395, 3396, 3397, 3398, 3399, 3400, 3401, + 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, + 3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417, + 3418, 3419, 3420, 3421, 3422, 3423, 3424, 3425, + 3426, 3427, 3428, 3429, 3430, 3431, 3432, 3433, + 3434, 3435, 3436, 3437, 3438, 3439, 3440, 3441, + 0, 3442, 3442, 3443, 3444, 3445, 3446, 3447, + 3448, 3449, 3450, 3451, 3452, 3453, 3454, 3455, + 3456, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3457, 3458, 3459, 3460, 3461, 3462, 3463, + 3464, 3465, 3466, 3467, 3468, 3469, 3470, 3471, + 3472, 3473, 3474, 3475, 3476, 3477, 3478, 3479, + 3480, 3481, 3482, 3483, 3484, 3485, 3486, 3487, + 0, 3488, 3489, 3490, 3491, 3492, 3493, 3494, + 3495, 3496, 3497, 3498, 3499, 3500, 3501, 3502, + 3503, 3504, 3505, 3506, 3507, 3508, 3509, 3510, + 3511, 3512, 3513, 3514, 3515, 3516, 3517, 3518, + 3519, 3520, 3521, 3522, 3523, 3524, 3525, 3526, + 3527, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 3528, 3529, 3530, 3531, 3532, 3533, 3534, + 3535, 3536, 3537, 3538, 3539, 3540, 3541, 3542, + 3543, 3544, 3545, 3546, 3547, 3548, 3549, 3550, + 3551, 3552, 3553, 3554, 3555, 3556, 3557, 3558, + 3559, 3560, 3561, 3562, 3563, 3564, 3565, 3566, + 3567, 3568, 3569, 3570, 3571, 3572, 3573, 3574, + 3442, 3575, 3576, 3577, 3578, 3579, 3580, 3581, + 3582, 3583, 3584, 3585, 3586, 3587, 3588, 3589, + 3590, 3591, 3592, 3593, 3594, 3595, 3596, 3597, + 3598, 3599, 3600, 3601, 3602, 3603, 3604, 3605, + 3606, 3607, 3608, 3609, 3610, 3611, 3612, 3613, + 3614, 3615, 3616, 3617, 3618, 3619, 3620, 3621, + 3622, 3623, 3624, 3625, 3626, 3627, 3628, 3629, + 3630, 3631, 3632, 3633, 3634, 3635, 3636, 3637, + 3638, 3639, 3640, 3641, 3642, 3643, 3644, 3645, + 3646, 3647, 3648, 3649, 3650, 3651, 3652, 3653, + 3654, 3655, 3656, 3657, 3658, 3659, 3660, 3661, + 3662, 3663, 3664, 3665, 3666, 3667, 3668, 3669, + 3670, 3671, 3672, 3673, 3674, 3675, 3676, 3677, + 3678, 3679, 3680, 3681, 3682, 3683, 3684, 3685, + 3686, 3687, 3688, 3689, 3690, 3691, 3692, 3693, + 3694, 3695, 3696, 3697, 3698, 3699, 3700, 3701, + 3702, 3703, 3704, 3705, 3706, 3707, 3708, 3709, + 3710, 3711, 3712, 3713, 3714, 3715, 3716, 3717, + 3718, 3719, 3720, 3721, 3722, 3723, 3724, 3725, + 3726, 3727, 3728, 3729, 3730, 3731, 3732, 3733, + 3734, 3735, 3736, 3737, 3738, 3739, 3740, 3741, + 3742, 3743, 3744, 3745, 3746, 3747, 3748, 3749, + 3750, 3751, 3752, 3753, 3754, 3755, 3756, 3757, + 3758, 3759, 3760, 3761, 3762, 3763, 3764, 3765, + 3766, 3767, 3768, 3769, 3770, 3771, 3772, 3773, + 3774, 3775, 3776, 3777, 3778, 3779, 3780, 3781, + 3782, 3783, 3784, 3785, 3786, 3787, 3788, 3789, + 3790, 3791, 3792, 3793, 3794, 3795, 3796, 3797, + 3798, 3799, 3800, 3801, 3802, 3803, 3804, 3805, + 3806, 3807, 3808, 3809, 3810, 3811, 3812, 3813, + 3814, 3815, 3816, 3817, 3818, 3819, 3820, 3821, + 3822, 3823, 3824, 3825, 3826, 3827, 3828, 3829, + 3830, 3831, 3832, 3833, 3834, 3835, 3836, 3837, + 3838, 3839, 3840, 3841, 3842, 3843, 3844, 3845, + 3846, 3847, 3848, 3849, 3850, 3851, 3852, 3853, + 3854, 3855, 3856, 3857, 3858, 3859, 3860, 3861, + 3862, 3863, 3864, 3865, 3866, 3867, 3868, 3869, + 3870, 3871, 3872, 3873, 3874, 3875, 3876, 3877, + 3878, 3879, 3880, 3881, 3882, 3883, 3884, 3885, + 3886, 3887, 3888, 3889, 3890, 3891, 3892, 3893, + 3894, 3895, 3896, 3897, 3898, 3899, 3900, 3901, + 3902, 3903, 3904, 3905, 3906, 3907, 3908, 3909, + 3910, 3911, 3912, 3913, 3914, 3915, 3916, 3917, + 3918, 3919, 3920, 3921, 3922, 3923, 3924, 3925, + 3926, 3927, 3928, 3929, 3930, 3931, 3932, 3933, + 3934, 3935, 3936, 3937, 3938, 3939, 3940, 3941, + 3942, 3943, 3944, 3945, 3946, 3947, 3948, 3949, + 3950, 3951, 3952, 3953, 3954, 3955, 3956, 3957, + 3958, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 0, 0, + 0, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3220, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 0, 0, + 0, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 596, 596, 596, 596, 596, 596, 1120, + 1120, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 596, 9, 9, + 9, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 346, 346, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3959, 3960, 3961, 3962, 3963, 3964, 3965, + 3966, 3967, 3968, 3969, 3970, 3971, 3972, 3973, + 3974, 3975, 3976, 3977, 3978, 3979, 3980, 3981, + 3982, 3983, 3984, 3985, 3986, 3987, 3988, 3989, + 3990, 3991, 3992, 3993, 3994, 3995, 3996, 3997, + 3998, 3999, 4000, 4001, 4002, 4003, 4004, 346, + 615, 915, 915, 915, 9, 615, 615, 615, + 615, 615, 615, 615, 615, 615, 615, 9, + 595, 4005, 4006, 4007, 4008, 4009, 4010, 4011, + 4012, 4013, 4014, 4015, 4016, 4017, 4018, 4019, + 4020, 4021, 4022, 4023, 4024, 4025, 4026, 4027, + 4028, 4029, 4030, 4031, 4032, 4033, 4034, 615, + 615, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 615, 615, 1120, 1120, 1120, 1120, 1120, + 1120, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, - 522, 522, 522, 522, 522, 522, 522, 522, - 522, 47, 47, 3760, 3761, 3762, 3763, 3764, - 3765, 3766, 3767, 3768, 3769, 3770, 3771, 3772, - 3773, 214, 214, 3774, 3775, 3776, 3777, 3778, - 3779, 3780, 3781, 3782, 3783, 3784, 3785, 3786, - 3787, 3788, 3789, 3790, 3791, 3792, 3793, 3794, - 3795, 3796, 3797, 3798, 3799, 3800, 3801, 3802, - 3803, 3804, 3805, 3806, 3807, 3808, 3809, 3810, - 3811, 3812, 3813, 3814, 3815, 3816, 3817, 3818, - 3819, 3820, 3821, 3822, 3823, 3824, 3825, 3826, - 3827, 3828, 3829, 3830, 3831, 3832, 3833, 3834, - 3835, 3836, 1523, 1523, 1523, 1523, 1523, 1523, - 1523, 214, 3837, 3838, 3839, 3840, 3841, 3842, - 3843, 3844, 3845, 3846, 3847, 3848, 3849, 3850, - 3851, 522, 3852, 3852, 3853, 3854, 3855, 214, - 340, 3856, 3857, 3858, 3859, 214, 214, 3860, - 3861, 3862, 3863, 3864, 3865, 3866, 3867, 3868, - 3869, 3870, 3871, 3872, 3873, 3874, 3875, 3876, - 3877, 3878, 3879, 3880, 3881, 3882, 3883, 3884, - 0, 3885, 3886, 3887, 3888, 3889, 3890, 3891, - 3892, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 340, 3893, 3894, 214, 340, 340, 340, 340, - 1160, 1160, 1160, 1153, 1160, 1160, 1160, 1168, - 1160, 1160, 1160, 1160, 1153, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1159, 1159, 1153, 1153, - 1159, 77, 77, 1085, 1085, 0, 0, 0, - 0, 1190, 1190, 1190, 1190, 1190, 1190, 1191, - 1191, 1189, 3895, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1428, 1428, 1428, - 1428, 0, 0, 0, 0, 0, 0, 0, - 0, 1159, 1159, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1159, 1159, 1159, - 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, - 1159, 1159, 1159, 1159, 1159, 1168, 1153, 0, - 0, 0, 0, 0, 0, 0, 0, 1177, - 1177, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 0, 0, 0, 0, 0, - 0, 540, 540, 540, 540, 540, 540, 540, - 540, 540, 540, 540, 540, 540, 540, 540, - 540, 540, 540, 1160, 1160, 1160, 1160, 1160, - 1160, 1177, 1177, 1177, 1160, 1177, 1160, 0, - 0, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1153, - 1153, 1153, 1153, 1153, 553, 553, 553, 1177, - 1177, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1159, 1452, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 1177, 1327, 1327, 1327, 1327, 1327, 1327, 1327, - 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, - 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, - 1327, 1327, 1327, 1327, 1327, 1327, 0, 0, - 0, 1153, 1153, 1153, 1159, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1180, 1159, 1159, 1153, - 1153, 1153, 1153, 1159, 1159, 1153, 1159, 1159, - 1159, 1452, 1177, 1177, 1177, 1177, 1177, 1177, - 1177, 1177, 1177, 1177, 1177, 1177, 1177, 0, - 1179, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 0, 0, 0, 0, 1177, - 1177, 340, 1160, 1160, 1160, 1160, 1153, 523, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 340, 1250, 1250, 1250, 1250, 1250, 1250, 1250, - 1250, 1250, 1178, 1160, 1160, 1160, 340, 1160, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1153, 1153, 1153, 1153, 1153, 1153, - 1159, 1159, 1153, 1153, 1159, 1159, 1153, 1153, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1153, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1153, 1159, 0, - 0, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 0, 0, 1177, 1177, 1177, - 1177, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1179, 1160, 1160, 1160, 1160, 1160, 1160, - 1191, 1191, 1191, 1160, 1284, 1153, 1284, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 540, 1160, 540, 540, 553, 1160, 1160, - 540, 540, 1160, 1160, 1160, 1160, 1160, 540, - 540, 1160, 540, 1160, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1160, 1160, 1179, 1177, - 1177, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1159, 1153, 1153, 1159, - 1159, 1177, 1177, 1160, 1179, 1179, 1159, 1168, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 0, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 0, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 214, 214, 214, 214, 214, 214, 214, - 214, 214, 214, 214, 214, 214, 214, 214, - 214, 214, 214, 214, 214, 214, 214, 214, - 214, 214, 214, 214, 214, 214, 214, 214, - 214, 214, 214, 214, 3896, 214, 214, 214, - 214, 214, 214, 214, 3852, 3897, 3898, 3899, - 3900, 214, 214, 214, 214, 214, 214, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 3901, 3902, 3903, 3904, 3905, 3906, 3907, - 3908, 3909, 3910, 3911, 3912, 3913, 3914, 3915, - 3916, 3917, 3918, 3919, 3920, 3921, 3922, 3923, - 3924, 3925, 3926, 3927, 3928, 3929, 3930, 3931, - 3932, 3933, 3934, 3935, 3936, 3937, 3938, 3939, - 3940, 3941, 3942, 3943, 3944, 3945, 3946, 3947, - 3948, 3949, 3950, 3951, 3952, 3953, 3954, 3955, - 3956, 3957, 3958, 3959, 3960, 3961, 3962, 3963, - 3964, 3965, 3966, 3967, 3968, 3969, 3970, 3971, - 3972, 3973, 3974, 3975, 3976, 3977, 3978, 3979, - 3980, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1159, 1159, 1153, 1159, - 1159, 1153, 1159, 1159, 1177, 1159, 1168, 0, - 0, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 0, 0, 0, 0, 0, - 0, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3981, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3981, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1330, 1330, 1330, 1330, 1330, 1330, 1330, - 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, - 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, - 0, 0, 0, 0, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, - 1331, 1331, 1331, 1331, 1331, 0, 0, 0, - 0, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, - 3983, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3985, 3986, 3987, 3988, 3989, 3990, 3991, - 3992, 3992, 3993, 3994, 3995, 3996, 3997, 3998, - 3999, 4000, 4001, 4002, 4003, 4004, 4005, 4006, - 4007, 4008, 4009, 4010, 4011, 4012, 4013, 4014, - 4015, 4016, 4017, 4018, 4019, 4020, 4021, 4022, - 4023, 4024, 4025, 4026, 4027, 4028, 4029, 4030, - 4031, 4032, 4033, 4034, 4035, 4036, 4037, 4038, - 4039, 4040, 4041, 4042, 4043, 4044, 4045, 4046, - 4047, 4048, 4049, 4050, 4051, 4052, 4053, 4054, - 4055, 4056, 4057, 4058, 4059, 4060, 4061, 4062, - 4063, 4064, 4065, 4066, 4067, 4068, 4069, 4070, - 4071, 4072, 4073, 4074, 4075, 4004, 4076, 4077, - 4078, 4079, 4080, 4081, 4082, 4083, 4084, 4085, - 4086, 4087, 4088, 4089, 4090, 4091, 4092, 4093, - 4094, 4095, 4096, 4097, 4098, 4099, 4100, 4101, - 4102, 4103, 4104, 4105, 4106, 4107, 4108, 4109, - 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, - 4118, 4119, 4120, 4121, 4122, 4123, 4124, 4125, - 4126, 4127, 4128, 4129, 4130, 4131, 4132, 4133, - 4134, 4135, 4136, 4137, 4138, 4139, 4140, 4141, - 4142, 4143, 4094, 4144, 4145, 4146, 4147, 4148, - 4149, 4150, 4151, 4078, 4152, 4153, 4154, 4155, - 4156, 4157, 4158, 4159, 4160, 4161, 4162, 4163, - 4164, 4165, 4166, 4167, 4168, 4169, 4170, 4171, - 4004, 4172, 4173, 4174, 4175, 4176, 4177, 4178, - 4179, 4180, 4181, 4182, 4183, 4184, 4185, 4186, - 4187, 4188, 4189, 4190, 4191, 4192, 4193, 4194, - 4195, 4196, 4197, 4198, 4080, 4199, 4200, 4201, - 4202, 4203, 4204, 4205, 4206, 4207, 4208, 4209, - 4210, 4211, 4212, 4213, 4214, 4215, 4216, 4217, - 4218, 4219, 4220, 4221, 4222, 4223, 4224, 4225, - 4226, 4227, 4228, 4229, 4230, 4231, 4232, 4233, - 4234, 4235, 4236, 4237, 4238, 4239, 4240, 4241, - 4242, 4243, 4244, 4245, 4246, 4247, 4248, 1160, - 1160, 4249, 1160, 4250, 1160, 1160, 4251, 4252, - 4253, 4254, 4255, 4256, 4257, 4258, 4259, 4260, - 1160, 4261, 1160, 4262, 1160, 1160, 4263, 4264, - 1160, 1160, 1160, 4265, 4266, 4267, 4268, 4269, - 4270, 4271, 4272, 4273, 4274, 4275, 4276, 4277, - 4278, 4279, 4280, 4281, 4282, 4283, 4284, 4285, - 4286, 4287, 4288, 4289, 4290, 4291, 4292, 4293, - 4294, 4295, 4296, 4297, 4298, 4299, 4300, 4301, - 4302, 4303, 4304, 4305, 4306, 4307, 4308, 4309, - 4133, 4310, 4311, 4312, 4313, 4314, 4315, 4315, + 595, 595, 595, 595, 595, 595, 595, 595, + 595, 47, 47, 4035, 4036, 4037, 4038, 4039, + 4040, 4041, 4042, 4043, 4044, 4045, 4046, 4047, + 4048, 4049, 4050, 4051, 4052, 4053, 4054, 4055, + 4056, 4057, 4058, 4059, 4060, 4061, 4062, 4063, + 4064, 4065, 4066, 4067, 4068, 4069, 4070, 4071, + 4072, 4073, 4074, 4075, 4076, 4077, 4078, 4079, + 4080, 4081, 4082, 4083, 4084, 4085, 4086, 4087, + 4088, 4089, 4090, 4091, 4092, 4093, 4094, 4095, + 4096, 4097, 4098, 4099, 4100, 4101, 4102, 4103, + 4104, 4105, 4106, 4107, 4108, 4109, 4110, 4111, + 4112, 4113, 4114, 4115, 4116, 4117, 4118, 4119, + 4120, 4121, 4122, 4123, 4124, 4125, 4126, 4127, + 4128, 4129, 4130, 4131, 4132, 4133, 4134, 4135, + 4136, 595, 4137, 4137, 4138, 4139, 4140, 4141, + 346, 4142, 4143, 4144, 4145, 4146, 4147, 4148, + 4149, 4150, 4151, 4152, 4153, 4154, 4155, 4156, + 4157, 4158, 4159, 4160, 4161, 4162, 4163, 4164, + 4165, 4166, 4167, 4168, 4169, 4170, 4171, 4172, + 4173, 4174, 4175, 4176, 4177, 4178, 4179, 4180, + 4181, 4182, 4183, 4184, 4185, 4186, 4187, 4188, + 4189, 0, 0, 4190, 4191, 4192, 4193, 4194, + 4195, 4196, 4197, 4198, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 4199, 4200, + 346, 4201, 4202, 4203, 346, 346, 346, 346, + 346, 346, 346, 1226, 346, 346, 346, 1238, + 346, 346, 346, 346, 1226, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 1230, 1230, 1226, 1226, + 1230, 77, 77, 77, 77, 1238, 0, 0, + 0, 1257, 1257, 1257, 1257, 1257, 1257, 914, + 914, 11, 84, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 9, 9, 9, + 9, 0, 0, 0, 0, 0, 0, 0, + 0, 1230, 1230, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 1230, 1230, 1230, + 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, + 1230, 1230, 1230, 1230, 1230, 1238, 1226, 0, + 0, 0, 0, 0, 0, 0, 0, 1120, + 1120, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, + 0, 615, 615, 615, 615, 615, 615, 615, + 615, 615, 615, 615, 615, 615, 615, 615, + 615, 615, 615, 346, 346, 346, 346, 346, + 346, 1120, 1120, 1120, 346, 1120, 346, 346, + 1226, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 1226, + 1226, 1226, 1226, 1226, 628, 628, 628, 1120, + 1120, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1230, 1558, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 1120, 1436, 1436, 1436, 1436, 1436, 1436, 1436, + 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, + 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, + 1436, 1436, 1436, 1436, 1436, 1436, 0, 0, + 0, 1226, 1226, 1226, 1230, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 1248, 1230, 1230, 1226, + 1226, 1226, 1226, 1230, 1230, 1226, 1226, 1230, + 1230, 1558, 1120, 1120, 1120, 1120, 1120, 1120, + 1120, 1120, 1120, 1120, 1120, 1120, 1120, 0, + 596, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 1120, + 1120, 346, 346, 346, 346, 346, 1226, 596, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 346, 346, 346, 346, 346, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 1226, 1226, 1226, 1226, 1226, 1226, + 1230, 1230, 1226, 1226, 1230, 1230, 1226, 1226, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 1226, 346, 346, 346, + 346, 346, 346, 346, 346, 1226, 1230, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 1120, 1120, 1120, + 1120, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 596, 346, 346, 346, 346, 346, 346, + 914, 914, 914, 346, 1347, 1226, 1347, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 615, 346, 615, 615, 628, 346, 346, + 615, 615, 346, 346, 346, 346, 346, 615, + 615, 346, 615, 346, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 346, 346, 596, 1120, + 1120, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 1230, 1226, 1226, 1230, + 1230, 1120, 1120, 346, 596, 596, 1230, 1238, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 346, 346, 346, 346, 346, 346, + 0, 0, 346, 346, 346, 346, 346, 346, + 0, 0, 346, 346, 346, 346, 346, 346, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 0, 346, 346, 346, 346, 346, 346, 346, + 0, 4204, 4205, 4206, 4207, 4208, 4209, 4210, + 4211, 4212, 4213, 4214, 4215, 4216, 4217, 4218, + 4219, 4220, 4221, 4222, 4223, 4224, 4225, 4226, + 4227, 4228, 4229, 4230, 4231, 4232, 4233, 4234, + 4235, 4236, 4237, 4238, 4239, 4240, 4241, 4242, + 4243, 4244, 4245, 4246, 4137, 4247, 4248, 4249, + 4250, 4251, 4252, 4253, 4254, 4255, 4256, 4257, + 4258, 4259, 4260, 47, 47, 0, 0, 0, + 0, 4261, 4262, 4263, 4264, 4265, 4266, 4267, + 4268, 4269, 4270, 4271, 4272, 4273, 4274, 4275, + 4276, 4277, 4278, 4279, 4280, 4281, 4282, 4283, + 4284, 4285, 4286, 4287, 4288, 4289, 4290, 4291, + 4292, 4293, 4294, 4295, 4296, 4297, 4298, 4299, + 4300, 4301, 4302, 4303, 4304, 4305, 4306, 4307, + 4308, 4309, 4310, 4311, 4312, 4313, 4314, 4315, 4316, 4317, 4318, 4319, 4320, 4321, 4322, 4323, - 4263, 4324, 4325, 4326, 4327, 4328, 4329, 0, - 0, 4330, 4331, 4332, 4333, 4334, 4335, 4336, - 4337, 4277, 4338, 4339, 4340, 4249, 4341, 4342, - 4343, 4344, 4345, 4346, 4347, 4348, 4349, 4350, - 4351, 4352, 4286, 4353, 4287, 4354, 4355, 4356, - 4357, 4358, 4250, 4025, 4359, 4360, 4361, 4095, - 4182, 4362, 4363, 4294, 4364, 4295, 4365, 4366, - 4367, 4252, 4368, 4369, 4370, 4371, 4372, 4253, - 4373, 4374, 4375, 4376, 4377, 4378, 4309, 4379, - 4380, 4133, 4381, 4313, 4382, 4383, 4384, 4385, - 4386, 4318, 4387, 4262, 4388, 4319, 4076, 4389, - 4320, 4390, 4322, 4391, 4392, 4393, 4394, 4395, - 4324, 4258, 4396, 4325, 4397, 4326, 4398, 3992, + 4324, 4325, 4326, 4327, 4328, 4329, 4330, 4331, + 4332, 4333, 4334, 4335, 4336, 4337, 4338, 4339, + 4340, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 1230, 1230, 1226, 1230, + 1230, 1226, 1230, 1230, 1120, 1230, 1238, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, + 0, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4341, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4341, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, + 4342, 4342, 4342, 4342, 4342, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1439, 1439, 1439, 1439, 1439, 1439, 1439, + 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, + 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, + 0, 0, 0, 0, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1440, 0, 0, 0, + 0, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, + 4343, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4345, 4346, 4347, 4348, 4349, 4350, 4351, + 4352, 4352, 4353, 4354, 4355, 4356, 4357, 4358, + 4359, 4360, 4361, 4362, 4363, 4364, 4365, 4366, + 4367, 4368, 4369, 4370, 4371, 4372, 4373, 4374, + 4375, 4376, 4377, 4378, 4379, 4380, 4381, 4382, + 4383, 4384, 4385, 4386, 4387, 4388, 4389, 4390, + 4391, 4392, 4393, 4394, 4395, 4396, 4397, 4398, 4399, 4400, 4401, 4402, 4403, 4404, 4405, 4406, - 4407, 4408, 4409, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 4410, 4411, 4412, 4413, 4414, 4415, 4416, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 4417, 4418, 4419, 4420, - 4421, 0, 0, 0, 0, 0, 4422, 4423, - 4424, 4425, 4426, 4427, 4428, 4429, 4430, 4431, - 4432, 4433, 4434, 4435, 4436, 4437, 4438, 4439, - 4440, 4441, 4442, 4443, 4444, 4445, 4446, 4447, - 0, 4448, 4449, 4450, 4451, 4452, 0, 4453, - 0, 4454, 4455, 0, 4456, 4457, 0, 4458, - 4459, 4460, 4461, 4462, 4463, 4464, 4465, 4466, - 4467, 4468, 4469, 4470, 4471, 4472, 4473, 4474, - 4475, 4476, 4477, 4478, 4479, 4480, 4481, 4482, - 4483, 4484, 4485, 4486, 4487, 4488, 4489, 4490, - 4491, 4492, 4493, 4494, 4495, 4496, 4497, 4498, - 4499, 4500, 4501, 4502, 4503, 4504, 4505, 4506, - 4507, 4508, 4509, 4510, 4511, 4512, 4513, 4514, - 4515, 4516, 4517, 4518, 4519, 4520, 4521, 4522, - 4523, 4524, 4525, 4526, 4527, 4528, 4529, 4530, - 4531, 4532, 4533, 4534, 4535, 4536, 4537, 4538, + 4407, 4408, 4409, 4410, 4411, 4412, 4413, 4414, + 4415, 4416, 4417, 4418, 4419, 4420, 4421, 4422, + 4423, 4424, 4425, 4426, 4427, 4428, 4429, 4430, + 4431, 4432, 4433, 4434, 4435, 4364, 4436, 4437, + 4438, 4439, 4440, 4441, 4442, 4443, 4444, 4445, + 4446, 4447, 4448, 4449, 4450, 4451, 4452, 4453, + 4454, 4455, 4456, 4457, 4458, 4459, 4460, 4461, + 4462, 4463, 4464, 4465, 4466, 4467, 4468, 4469, + 4470, 4471, 4472, 4473, 4474, 4475, 4476, 4477, + 4478, 4479, 4480, 4481, 4482, 4483, 4484, 4485, + 4486, 4487, 4488, 4489, 4490, 4491, 4492, 4493, + 4494, 4495, 4496, 4497, 4498, 4499, 4500, 4501, + 4502, 4503, 4454, 4504, 4505, 4506, 4507, 4508, + 4509, 4510, 4511, 4438, 4512, 4513, 4514, 4515, + 4516, 4517, 4518, 4519, 4520, 4521, 4522, 4523, + 4524, 4525, 4526, 4527, 4528, 4529, 4530, 4531, + 4364, 4532, 4533, 4534, 4535, 4536, 4537, 4538, 4539, 4540, 4541, 4542, 4543, 4544, 4545, 4546, 4547, 4548, 4549, 4550, 4551, 4552, 4553, 4554, - 4555, 4556, 4557, 4558, 4559, 4560, 4561, 4562, - 4563, 4564, 4565, 4566, 4566, 4566, 4566, 4566, - 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, - 4566, 4566, 4566, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 4567, 4568, 4569, 4570, - 4571, 4572, 4573, 4574, 4575, 4576, 4577, 4578, - 4579, 4580, 4581, 4582, 4583, 4584, 4585, 4586, - 4587, 4588, 4589, 4590, 4591, 4592, 4593, 4594, - 4595, 4596, 4597, 4598, 4599, 4600, 4601, 4602, - 4603, 4604, 4605, 4606, 4607, 4608, 4609, 4610, - 4611, 4612, 4613, 4614, 4605, 4615, 4616, 4617, - 4618, 4619, 4620, 4621, 4622, 4623, 4624, 4625, - 4626, 4627, 4628, 4629, 4630, 4631, 4632, 4633, - 4634, 4635, 4636, 4637, 4638, 4639, 4640, 4641, - 4642, 4643, 4644, 4645, 4646, 4647, 4648, 4649, - 4650, 4651, 4652, 4653, 4654, 4655, 4656, 4657, - 4658, 4659, 4660, 4661, 4662, 4663, 4664, 4665, - 4666, 4667, 4668, 4669, 4670, 4671, 4672, 4673, - 4674, 4675, 4676, 4677, 4678, 4679, 4680, 4681, - 4682, 4683, 4684, 4685, 4686, 4687, 4688, 4689, - 4690, 4691, 4692, 4693, 4694, 4695, 4696, 4697, - 4698, 4699, 4700, 4701, 4702, 4703, 4704, 4705, - 4706, 4707, 4708, 4709, 4710, 4711, 4712, 4713, - 4714, 4606, 4715, 4716, 4717, 4718, 4719, 4720, - 4721, 4722, 4723, 4724, 4725, 4726, 4727, 4728, - 4729, 4730, 4731, 4732, 4733, 4734, 4735, 4736, - 4737, 4738, 4739, 4740, 4741, 4742, 4743, 4744, - 4745, 4746, 4747, 4748, 4749, 4750, 4751, 4752, - 4753, 4754, 4755, 4756, 4757, 4758, 4759, 4760, - 4761, 4762, 4763, 4764, 4765, 4766, 4767, 4768, - 4769, 4770, 4771, 4772, 4773, 4774, 4775, 4776, - 4777, 4778, 4779, 4780, 4781, 4782, 4783, 4784, - 4785, 4786, 4787, 4788, 4789, 4790, 4791, 4792, - 4793, 4794, 4795, 4796, 4797, 4798, 4799, 4800, - 4801, 4802, 4803, 4804, 4805, 4806, 4807, 4808, - 4809, 4810, 4811, 4812, 4813, 4814, 4815, 4816, - 4817, 4818, 4819, 4820, 4821, 4822, 4823, 4824, - 4825, 4826, 4827, 4828, 4829, 4830, 4831, 4832, - 4833, 4834, 4835, 4836, 4837, 4838, 4839, 4840, - 4841, 4842, 4843, 4844, 4845, 4846, 4847, 4848, - 4849, 4850, 4851, 4852, 4853, 4854, 4855, 4856, - 4857, 4858, 4859, 4860, 4861, 4862, 4863, 4864, - 4865, 4866, 4867, 4868, 4869, 4870, 4871, 4872, - 4873, 4874, 4875, 4876, 4877, 4878, 4879, 4880, - 4881, 4882, 4883, 4884, 4885, 4886, 4887, 4888, - 4889, 4890, 4891, 4892, 4893, 4894, 4895, 4896, - 4897, 4898, 4899, 4900, 4901, 4902, 4903, 4904, - 4905, 4906, 4907, 4908, 4909, 4910, 4911, 4912, - 4913, 4914, 4915, 4916, 4917, 4918, 4919, 4920, - 4921, 4922, 4923, 4924, 4925, 4926, 4927, 2956, - 2955, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 4928, 4929, 4930, 4931, 4932, 4933, 4934, - 4935, 4936, 4937, 4938, 4939, 4940, 4941, 4942, - 4943, 4944, 4945, 4946, 4947, 4948, 4949, 4950, - 4951, 4952, 4953, 4954, 4955, 4956, 4957, 4958, - 4959, 4960, 4961, 4962, 4963, 4964, 4965, 4966, - 4967, 4968, 4969, 4970, 4971, 4972, 4973, 4974, - 4975, 4976, 4977, 4978, 4979, 4980, 4981, 4982, - 4983, 4984, 4985, 4986, 4987, 4988, 4989, 4990, - 4991, 0, 0, 4992, 4993, 4994, 4995, 4996, - 4997, 4998, 4999, 5000, 5001, 5002, 5003, 5004, - 5005, 5006, 5007, 5008, 5009, 5010, 5011, 5012, - 5013, 5014, 5015, 5016, 5017, 5018, 5019, 5020, - 5021, 5022, 5023, 5024, 5025, 5026, 5027, 5028, - 5029, 5030, 5031, 5032, 5033, 5034, 5035, 5036, - 5037, 5038, 5039, 5040, 5041, 5042, 5043, 5044, - 5045, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 5046, 5047, 5048, 5049, 5050, 5051, 5052, - 5053, 5054, 5055, 5056, 5057, 5058, 1085, 0, - 0, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 5059, 5060, 5061, 5062, 5063, 5064, 5065, - 5066, 5067, 5068, 0, 0, 0, 0, 0, - 0, 540, 540, 540, 540, 540, 540, 540, - 553, 553, 553, 553, 553, 553, 553, 540, - 540, 5069, 5070, 5071, 5072, 5072, 5073, 5074, - 5075, 5076, 5077, 5078, 5079, 5080, 5081, 5082, - 5083, 5084, 5085, 5086, 5087, 5088, 1428, 1428, - 5089, 5090, 5091, 5091, 5091, 5091, 5092, 5092, - 5092, 5093, 5094, 5095, 0, 5096, 5097, 5098, - 5099, 5100, 5101, 5102, 5103, 5104, 5105, 5106, - 5107, 5108, 5109, 5110, 5111, 5112, 5113, 5114, - 0, 5115, 5116, 5117, 5118, 0, 0, 0, - 0, 5119, 5120, 5121, 1118, 5122, 0, 5123, - 5124, 5125, 5126, 5127, 5128, 5129, 5130, 5131, - 5132, 5133, 5134, 5135, 5136, 5137, 5138, 5139, - 5140, 5141, 5142, 5143, 5144, 5145, 5146, 5147, - 5148, 5149, 5150, 5151, 5152, 5153, 5154, 5155, - 5156, 5157, 5158, 5159, 5160, 5161, 5162, 5163, - 5164, 5165, 5166, 5167, 5168, 5169, 5170, 5171, - 5172, 5173, 5174, 5175, 5176, 5177, 5178, 5179, - 5180, 5181, 5182, 5183, 5184, 5185, 5186, 5187, - 5188, 5189, 5190, 5191, 5192, 5193, 5194, 5195, - 5196, 5197, 5198, 5199, 5200, 5201, 5202, 5203, - 5204, 5205, 5206, 5207, 5208, 5209, 5210, 5211, - 5212, 5213, 5214, 5215, 5216, 5217, 5218, 5219, - 5220, 5221, 5222, 5223, 5224, 5225, 5226, 5227, - 5228, 5229, 5230, 5231, 5232, 5233, 5234, 5235, - 5236, 5237, 5238, 5239, 5240, 5241, 5242, 5243, - 5244, 5245, 5246, 5247, 5248, 5249, 5250, 5251, - 5252, 5253, 5254, 5255, 5256, 5257, 0, 0, - 81, 0, 5258, 5259, 5260, 5261, 5262, 5263, - 5264, 5265, 5266, 5267, 5268, 5269, 5270, 5271, - 5272, 5273, 5274, 5275, 5276, 5277, 5278, 5279, - 5280, 5281, 5282, 5283, 5284, 5285, 5286, 5287, - 5288, 5289, 5290, 5291, 5292, 5293, 5294, 5295, + 4555, 4556, 4557, 4558, 4440, 4559, 4560, 4561, + 4562, 4563, 4564, 4565, 4566, 4567, 4568, 4569, + 4570, 4571, 4572, 4573, 4574, 4575, 4576, 4577, + 4578, 4579, 4580, 4581, 4582, 4583, 4584, 4585, + 4586, 4587, 4588, 4589, 4590, 4591, 4592, 4593, + 4594, 4595, 4596, 4597, 4598, 4599, 4600, 4601, + 4602, 4603, 4604, 4605, 4606, 4607, 4608, 3221, + 3221, 4609, 3221, 4610, 3221, 3221, 4611, 4612, + 4613, 4614, 4615, 4616, 4617, 4618, 4619, 4620, + 3221, 4621, 3221, 4622, 3221, 3221, 4623, 4624, + 3221, 3221, 3221, 4625, 4626, 4627, 4628, 4629, + 4630, 4631, 4632, 4633, 4634, 4635, 4636, 4637, + 4638, 4639, 4640, 4641, 4642, 4643, 4644, 4645, + 4646, 4647, 4648, 4649, 4650, 4651, 4652, 4653, + 4654, 4655, 4656, 4657, 4658, 4659, 4660, 4661, + 4662, 4663, 4664, 4665, 4666, 4667, 4668, 4669, + 4493, 4670, 4671, 4672, 4673, 4674, 4675, 4675, + 4676, 4677, 4678, 4679, 4680, 4681, 4682, 4683, + 4623, 4684, 4685, 4686, 4687, 4688, 4689, 0, + 0, 4690, 4691, 4692, 4693, 4694, 4695, 4696, + 4697, 4637, 4698, 4699, 4700, 4609, 4701, 4702, + 4703, 4704, 4705, 4706, 4707, 4708, 4709, 4710, + 4711, 4712, 4646, 4713, 4647, 4714, 4715, 4716, + 4717, 4718, 4610, 4385, 4719, 4720, 4721, 4455, + 4542, 4722, 4723, 4654, 4724, 4655, 4725, 4726, + 4727, 4612, 4728, 4729, 4730, 4731, 4732, 4613, + 4733, 4734, 4735, 4736, 4737, 4738, 4669, 4739, + 4740, 4493, 4741, 4673, 4742, 4743, 4744, 4745, + 4746, 4678, 4747, 4622, 4748, 4679, 4436, 4749, + 4680, 4750, 4682, 4751, 4752, 4753, 4754, 4755, + 4684, 4618, 4756, 4685, 4757, 4686, 4758, 4352, + 4759, 4760, 4761, 4762, 4763, 4764, 4765, 4766, + 4767, 4768, 4769, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 4770, 4771, 4772, 4773, 4774, 4775, 4776, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 4777, 4778, 4779, 4780, + 4781, 0, 0, 0, 0, 0, 4782, 4783, + 4784, 4785, 4786, 4787, 4788, 4789, 4790, 4791, + 4792, 4793, 4794, 4795, 4796, 4797, 4798, 4799, + 4800, 4801, 4802, 4803, 4804, 4805, 4806, 4807, + 0, 4808, 4809, 4810, 4811, 4812, 0, 4813, + 0, 4814, 4815, 0, 4816, 4817, 0, 4818, + 4819, 4820, 4821, 4822, 4823, 4824, 4825, 4826, + 4827, 4828, 4829, 4830, 4831, 4832, 4833, 4834, + 4835, 4836, 4837, 4838, 4839, 4840, 4841, 4842, + 4843, 4844, 4845, 4846, 4847, 4848, 4849, 4850, + 4851, 4852, 4853, 4854, 4855, 4856, 4857, 4858, + 4859, 4860, 4861, 4862, 4863, 4864, 4865, 4866, + 4867, 4868, 4869, 4870, 4871, 4872, 4873, 4874, + 4875, 4876, 4877, 4878, 4879, 4880, 4881, 4882, + 4883, 4884, 4885, 4886, 4887, 4888, 4889, 4890, + 4891, 4892, 4893, 4894, 4895, 4896, 4897, 4898, + 4899, 4900, 4901, 4902, 4903, 4904, 4905, 4906, + 4907, 4908, 4909, 4910, 4911, 4912, 4913, 4914, + 4915, 4916, 4917, 4918, 4919, 4920, 4921, 4922, + 4923, 4924, 4925, 4926, 4926, 4926, 4926, 4926, + 4926, 4926, 4926, 4926, 4926, 4926, 4926, 4926, + 4926, 4926, 4926, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 4927, 4928, 4929, 4930, + 4931, 4932, 4933, 4934, 4935, 4936, 4937, 4938, + 4939, 4940, 4941, 4942, 4943, 4944, 4945, 4946, + 4947, 4948, 4949, 4950, 4951, 4952, 4953, 4954, + 4955, 4956, 4957, 4958, 4959, 4960, 4961, 4962, + 4963, 4964, 4965, 4966, 4967, 4968, 4969, 4970, + 4971, 4972, 4973, 4974, 4965, 4975, 4976, 4977, + 4978, 4979, 4980, 4981, 4982, 4983, 4984, 4985, + 4986, 4987, 4988, 4989, 4990, 4991, 4992, 4993, + 4994, 4995, 4996, 4997, 4998, 4999, 5000, 5001, + 5002, 5003, 5004, 5005, 5006, 5007, 5008, 5009, + 5010, 5011, 5012, 5013, 5014, 5015, 5016, 5017, + 5018, 5019, 5020, 5021, 5022, 5023, 5024, 5025, + 5026, 5027, 5028, 5029, 5030, 5031, 5032, 5033, + 5034, 5035, 5036, 5037, 5038, 5039, 5040, 5041, + 5042, 5043, 5044, 5045, 5046, 5047, 5048, 5049, + 5050, 5051, 5052, 5053, 5054, 5055, 5056, 5057, + 5058, 5059, 5060, 5061, 5062, 5063, 5064, 5065, + 5066, 5067, 5068, 5069, 5070, 5071, 5072, 5073, + 5074, 4966, 5075, 5076, 5077, 5078, 5079, 5080, + 5081, 5082, 5083, 5084, 5085, 5086, 5087, 5088, + 5089, 5090, 5091, 5092, 5093, 5094, 5095, 5096, + 5097, 5098, 5099, 5100, 5101, 5102, 5103, 5104, + 5105, 5106, 5107, 5108, 5109, 5110, 5111, 5112, + 5113, 5114, 5115, 5116, 5117, 5118, 5119, 5120, + 5121, 5122, 5123, 5124, 5125, 5126, 5127, 5128, + 5129, 5130, 5131, 5132, 5133, 5134, 5135, 5136, + 5137, 5138, 5139, 5140, 5141, 5142, 5143, 5144, + 5145, 5146, 5147, 5148, 5149, 5150, 5151, 5152, + 5153, 5154, 5155, 5156, 5157, 5158, 5159, 5160, + 5161, 5162, 5163, 5164, 5165, 5166, 5167, 5168, + 5169, 5170, 5171, 5172, 5173, 5174, 5175, 5176, + 5177, 5178, 5179, 5180, 5181, 5182, 5183, 5184, + 5185, 5186, 5187, 5188, 5189, 5190, 5191, 5192, + 5193, 5194, 5195, 5196, 5197, 5198, 5199, 5200, + 5201, 5202, 5203, 5204, 5205, 5206, 5207, 5208, + 5209, 5210, 5211, 5212, 5213, 5214, 5215, 5216, + 5217, 5218, 5219, 5220, 5221, 5222, 5223, 5224, + 5225, 5226, 5227, 5228, 5229, 5230, 5231, 5232, + 5233, 5234, 5235, 5236, 5237, 5238, 5239, 5240, + 5241, 5242, 5243, 5244, 5245, 5246, 5247, 5248, + 5249, 5250, 5251, 5252, 5253, 5254, 5255, 5256, + 5257, 5258, 5259, 5260, 5261, 5262, 5263, 5264, + 5265, 5266, 5267, 5268, 5269, 5270, 5271, 5272, + 5273, 5274, 5275, 5276, 5277, 5278, 5279, 5280, + 5281, 5282, 5283, 5284, 5285, 5286, 5287, 5288, + 2307, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 5289, 5290, 5291, 5292, 5293, 5294, 5295, 5296, 5297, 5298, 5299, 5300, 5301, 5302, 5303, 5304, 5305, 5306, 5307, 5308, 5309, 5310, 5311, 5312, 5313, 5314, 5315, 5316, 5317, 5318, 5319, @@ -4264,205 +4546,265 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 5328, 5329, 5330, 5331, 5332, 5333, 5334, 5335, 5336, 5337, 5338, 5339, 5340, 5341, 5342, 5343, 5344, 5345, 5346, 5347, 5348, 5349, 5350, 5351, - 5352, 5353, 5354, 5355, 5356, 5357, 5358, 5359, - 5360, 5361, 5362, 5363, 5364, 5365, 5366, 5367, - 5368, 5369, 5370, 5371, 5372, 5373, 5374, 5375, - 5376, 5377, 5378, 5379, 5380, 5381, 5382, 5383, - 5384, 5385, 5386, 5387, 5388, 5389, 5390, 5391, - 5392, 5393, 5394, 5395, 5396, 5397, 5398, 5399, - 5400, 5401, 5402, 5403, 5404, 5405, 5406, 5407, - 5408, 5409, 5410, 5411, 5412, 5413, 5414, 5415, - 5416, 5417, 5418, 5419, 5420, 5421, 5422, 5423, - 5424, 5425, 5426, 5427, 5428, 5429, 5430, 5431, - 5432, 5433, 5434, 5435, 5436, 5437, 5438, 5439, - 5440, 5441, 5442, 5443, 5444, 5445, 5446, 5447, - 0, 0, 0, 5448, 5449, 5450, 5451, 5452, - 5453, 0, 0, 5454, 5455, 5456, 5457, 5458, - 5459, 0, 0, 5460, 5461, 5462, 5463, 5464, - 5465, 0, 0, 5466, 5467, 5468, 0, 0, - 0, 5469, 5470, 5471, 5472, 5473, 5474, 5475, - 0, 5476, 5477, 5478, 5479, 5480, 5481, 5482, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 5483, 5483, 5483, 1085, 77, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 0, 340, 1160, - 1160, 340, 340, 340, 1160, 340, 340, 340, - 340, 340, 340, 340, 340, 1160, 340, 340, - 340, 340, 340, 1160, 1160, 1160, 340, 340, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 1160, - 340, 340, 340, 340, 0, 340, 340, 0, - 340, 340, 1160, 340, 340, 1160, 1160, 1160, - 340, 340, 340, 1160, 1160, 340, 1160, 0, - 0, 340, 340, 1160, 340, 340, 1160, 340, - 1160, 1160, 1160, 340, 1160, 1160, 1160, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 1160, 1160, 1160, 1160, 340, - 340, 340, 340, 1160, 1160, 1160, 1160, 1160, - 340, 1160, 340, 340, 340, 340, 1160, 1160, - 1160, 1160, 1160, 340, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 340, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 340, 1160, 340, 1160, - 1160, 1160, 1160, 1160, 340, 340, 1160, 1160, - 1160, 1160, 1160, 1160, 340, 1160, 1160, 1160, - 1160, 1160, 340, 340, 340, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 340, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 0, 0, 0, 0, - 0, 1044, 9, 1044, 0, 0, 0, 0, - 5484, 5484, 5484, 5484, 5484, 5484, 5484, 5484, - 5484, 5484, 5484, 5484, 5484, 5484, 5484, 5484, - 5484, 5484, 5484, 5484, 5484, 5484, 5484, 5484, - 5484, 5484, 1190, 5484, 1190, 5484, 1190, 1190, - 1190, 1190, 1190, 1190, 5484, 1190, 5484, 1190, - 1190, 1190, 1190, 1190, 1190, 0, 0, 0, - 1191, 838, 1191, 838, 838, 838, 838, 838, - 1191, 5485, 5485, 5485, 5485, 5485, 5485, 5485, - 5485, 5485, 5485, 5485, 5485, 5485, 5485, 5485, - 5485, 5485, 5485, 5485, 5485, 5485, 5485, 5485, - 5485, 5485, 5485, 5485, 5485, 5485, 5485, 5485, - 5485, 5485, 5485, 5485, 5485, 5485, 5485, 5485, - 5485, 5485, 5486, 5486, 5486, 5486, 5486, 5486, - 5485, 5486, 5485, 5485, 5485, 5485, 1427, 1427, - 1220, 1427, 77, 77, 77, 77, 77, 77, - 77, 77, 77, 77, 77, 77, 77, 77, - 77, 1085, 77, 1427, 1427, 77, 838, 838, + 5352, 0, 0, 5353, 5354, 5355, 5356, 5357, + 5358, 5359, 5360, 5361, 5362, 5363, 5364, 5365, + 5366, 5367, 5368, 5369, 5370, 5371, 5372, 5373, + 5374, 5375, 5376, 5377, 5378, 5379, 5380, 5381, + 5382, 5383, 5384, 5385, 5386, 5387, 5388, 5389, + 5390, 5391, 5392, 5393, 5394, 5395, 5396, 5397, + 5398, 5399, 5400, 5401, 5402, 5403, 5404, 5405, + 5406, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 5407, 5408, 5409, 5410, 5411, 5412, 5413, + 5414, 5415, 5416, 5417, 5418, 5419, 77, 0, + 0, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 5420, 5421, 5422, 5423, 5424, 5425, 5426, + 5427, 5428, 5429, 0, 0, 0, 0, 0, + 0, 615, 615, 615, 615, 615, 615, 615, + 628, 628, 628, 628, 628, 628, 628, 615, + 615, 5430, 5431, 5432, 5433, 5433, 5434, 5435, + 5436, 5437, 5438, 5439, 5440, 5441, 5442, 5443, + 5444, 5445, 5446, 5447, 5448, 5449, 3219, 3219, + 5450, 5451, 5452, 5452, 5452, 5452, 5453, 5453, + 5453, 5454, 5455, 5456, 0, 5457, 5458, 5459, + 5460, 5461, 5462, 5463, 5464, 5465, 5466, 5467, + 5468, 5469, 5470, 5471, 5472, 5473, 5474, 5475, + 0, 5476, 5477, 5478, 5479, 0, 0, 0, + 0, 5480, 5481, 5482, 1192, 5483, 0, 5484, + 5485, 5486, 5487, 5488, 5489, 5490, 5491, 5492, + 5493, 5494, 5495, 5496, 5497, 5498, 5499, 5500, + 5501, 5502, 5503, 5504, 5505, 5506, 5507, 5508, + 5509, 5510, 5511, 5512, 5513, 5514, 5515, 5516, + 5517, 5518, 5519, 5520, 5521, 5522, 5523, 5524, + 5525, 5526, 5527, 5528, 5529, 5530, 5531, 5532, + 5533, 5534, 5535, 5536, 5537, 5538, 5539, 5540, + 5541, 5542, 5543, 5544, 5545, 5546, 5547, 5548, + 5549, 5550, 5551, 5552, 5553, 5554, 5555, 5556, + 5557, 5558, 5559, 5560, 5561, 5562, 5563, 5564, + 5565, 5566, 5567, 5568, 5569, 5570, 5571, 5572, + 5573, 5574, 5575, 5576, 5577, 5578, 5579, 5580, + 5581, 5582, 5583, 5584, 5585, 5586, 5587, 5588, + 5589, 5590, 5591, 5592, 5593, 5594, 5595, 5596, + 5597, 5598, 5599, 5600, 5601, 5602, 5603, 5604, + 5605, 5606, 5607, 5608, 5609, 5610, 5611, 5612, + 5613, 5614, 5615, 5616, 5617, 5618, 0, 0, + 1534, 0, 5619, 5620, 5621, 5622, 5623, 5624, + 5625, 5626, 5627, 5628, 5629, 5630, 5631, 5632, + 5633, 5634, 5635, 5636, 5637, 5638, 5639, 5640, + 5641, 5642, 5643, 5644, 5645, 5646, 5647, 5648, + 5649, 5650, 5651, 5652, 5653, 5654, 5655, 5656, + 5657, 5658, 5659, 5660, 5661, 5662, 5663, 5664, + 5665, 5666, 5667, 5668, 5669, 5670, 5671, 5672, + 5673, 5674, 5675, 5676, 5677, 5678, 5679, 5680, + 5681, 5682, 5683, 5684, 5685, 5686, 5687, 5688, + 5689, 5690, 5691, 5692, 5693, 5694, 5695, 5696, + 5697, 5698, 5699, 5700, 5701, 5702, 5703, 5704, + 5705, 5706, 5707, 5708, 5709, 5710, 5711, 5712, + 5713, 5714, 5715, 5716, 5717, 5718, 5719, 5720, + 5721, 5722, 5723, 5724, 5725, 5726, 5727, 5728, + 5729, 5730, 5731, 5732, 5733, 5734, 5735, 5736, + 5737, 5738, 5739, 5740, 5741, 5742, 5743, 5744, + 5745, 5746, 5747, 5748, 5749, 5750, 5751, 5752, + 5753, 5754, 5755, 5756, 5757, 5758, 5759, 5760, + 5761, 5762, 5763, 5764, 5765, 5766, 5767, 5768, + 5769, 5770, 5771, 5772, 5773, 5774, 5775, 5776, + 5777, 5778, 5779, 5780, 5781, 5782, 5783, 5784, + 5785, 5786, 5787, 5788, 5789, 5790, 5791, 5792, + 5793, 5794, 5795, 5796, 5797, 5798, 5799, 5800, + 5801, 5802, 5803, 5804, 5805, 5806, 5807, 5808, + 0, 0, 0, 5809, 5810, 5811, 5812, 5813, + 5814, 0, 0, 5815, 5816, 5817, 5818, 5819, + 5820, 0, 0, 5821, 5822, 5823, 5824, 5825, + 5826, 0, 0, 5827, 5828, 5829, 0, 0, + 0, 5830, 5831, 5832, 5833, 5834, 5835, 5836, + 0, 5837, 5838, 5839, 5840, 5841, 5842, 5843, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 5844, 5844, 5844, 77, 77, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 0, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 0, 346, 346, 0, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 0, 0, 0, 0, + 0, 1120, 9, 1120, 0, 0, 0, 0, + 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 0, 0, 0, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 5845, 5845, 5845, 5845, 5845, 5845, 5845, + 5845, 5845, 5845, 5845, 5845, 5845, 5845, 5845, + 5845, 5845, 5845, 5845, 5845, 5845, 5845, 5845, + 5845, 5845, 5845, 5845, 5845, 5845, 5845, 5845, + 5845, 5845, 5845, 5845, 5845, 5845, 5845, 5845, + 5845, 5845, 5845, 5845, 5845, 5845, 5845, 5845, + 5845, 5845, 5845, 5845, 5845, 5845, 1286, 1286, + 1286, 1286, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 1286, 1286, 77, 914, 914, 0, 77, 77, 77, 77, 77, 77, 77, - 1085, 1085, 1085, 77, 77, 0, 0, 0, + 77, 77, 77, 77, 77, 77, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 553, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, + 0, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 628, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 628, 5846, 5846, 5846, 5846, 5846, 5846, + 5846, 5846, 5846, 5846, 5846, 5846, 5846, 5846, + 5846, 5846, 5846, 5846, 5846, 5846, 5846, 5846, + 5846, 5846, 5846, 5846, 5846, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 1257, 1257, 1257, 1257, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 1533, 346, 346, 346, 346, 346, + 346, 346, 346, 1533, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 615, + 615, 615, 615, 615, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 0, + 1120, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 1120, 1533, 1533, 1533, 1533, 1533, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 1160, - 1160, 340, 340, 340, 340, 340, 340, 340, - 340, 1160, 340, 1160, 340, 340, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 1160, 340, 340, 340, 340, 340, 340, - 1160, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 0, 0, 0, 0, 0, 0, + 0, 5847, 5848, 5849, 5850, 5851, 5852, 5853, + 5854, 5855, 5856, 5857, 5858, 5859, 5860, 5861, + 5862, 5863, 5864, 5865, 5866, 5867, 5868, 5869, + 5870, 5871, 5872, 5873, 5874, 5875, 5876, 5877, + 5878, 5879, 5880, 5881, 5882, 5883, 5884, 5885, + 5886, 5887, 5888, 5889, 5890, 5891, 5892, 5893, + 5894, 5895, 5896, 5897, 5898, 5899, 5900, 5901, + 5902, 5903, 5904, 5905, 5906, 5907, 5908, 5909, + 5910, 5911, 5912, 5913, 5914, 5915, 5916, 5917, + 5918, 5919, 5920, 5921, 5922, 5923, 5924, 5925, + 5926, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, + 0, 5927, 5928, 5929, 5930, 5931, 5932, 5933, + 5934, 5935, 5936, 5937, 5938, 5939, 5940, 5941, + 5942, 5943, 5944, 5945, 5946, 5947, 5948, 5949, + 5950, 5951, 5952, 5953, 5954, 5955, 5956, 5957, + 5958, 5959, 5960, 5961, 5962, 0, 0, 0, + 0, 5963, 5964, 5965, 5966, 5967, 5968, 5969, + 5970, 5971, 5972, 5973, 5974, 5975, 5976, 5977, + 5978, 5979, 5980, 5981, 5982, 5983, 5984, 5985, + 5986, 5987, 5988, 5989, 5990, 5991, 5992, 5993, + 5994, 5995, 5996, 5997, 5998, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 553, 5487, 5487, 5487, 5487, 5487, 5487, - 5487, 5487, 5487, 5487, 5487, 5487, 5487, 5487, - 5487, 5487, 5487, 5487, 5487, 5487, 5487, 5487, - 5487, 5487, 5487, 5487, 5487, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 5484, 5484, 5484, 5484, 0, 0, 0, + 1120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 1426, 340, 340, 340, 340, 340, - 340, 340, 340, 1426, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 540, - 540, 540, 540, 540, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 0, - 1177, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1177, 2227, 2227, 2227, 2227, 2227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 5488, 5489, 5490, 5491, 5492, 5493, 5494, - 5495, 5496, 5497, 5498, 5499, 5500, 5501, 5502, - 5503, 5504, 5505, 5506, 5507, 5508, 5509, 5510, - 5511, 5512, 5513, 5514, 5515, 5516, 5517, 5518, - 5519, 5520, 5521, 5522, 5523, 5524, 5525, 5526, - 5527, 5528, 5529, 5530, 5531, 5532, 5533, 5534, - 5535, 5536, 5537, 5538, 5539, 5540, 5541, 5542, - 5543, 5544, 5545, 5546, 5547, 5548, 5549, 5550, - 5551, 5552, 5553, 5554, 5555, 5556, 5557, 5558, - 5559, 5560, 5561, 5562, 5563, 5564, 5565, 5566, - 5567, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 1160, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 1160, - 340, 1160, 340, 340, 1160, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 1160, 0, - 0, 1250, 1250, 1250, 1250, 1250, 1250, 1250, - 1250, 1250, 1250, 0, 0, 0, 0, 0, - 0, 5568, 5569, 5570, 5571, 5572, 5573, 5574, - 5575, 5576, 5577, 5578, 5579, 5580, 5581, 5582, - 5583, 5584, 5585, 5586, 5587, 5588, 5589, 5590, - 5591, 5592, 5593, 5594, 5595, 5596, 5597, 5598, - 5599, 5600, 5601, 5602, 5603, 0, 0, 0, - 0, 5604, 5605, 5606, 5607, 5608, 5609, 5610, - 5611, 5612, 5613, 5614, 5615, 5616, 5617, 5618, - 5619, 5620, 5621, 5622, 5623, 5624, 5625, 5626, - 5627, 5628, 5629, 5630, 5631, 5632, 5633, 5634, - 5635, 5636, 5637, 5638, 5639, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 1044, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -4474,54 +4816,22 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 1160, 340, 340, 340, - 340, 1160, 340, 1160, 1160, 1160, 340, 340, - 340, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 340, 340, 1160, 340, 340, 1160, 1160, - 340, 340, 1160, 1160, 1160, 1160, 340, 1160, - 340, 340, 340, 340, 340, 1160, 1160, 1160, - 340, 1160, 340, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 340, 1160, 1160, 1160, 340, - 1160, 1160, 340, 340, 1160, 1160, 1160, 1160, - 1160, 1160, 340, 340, 1160, 1160, 1160, 340, - 340, 340, 340, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 340, 1160, 1160, 1160, 1160, - 340, 1160, 1160, 340, 340, 340, 1160, 1160, - 1160, 1160, 340, 340, 340, 1160, 1160, 1160, - 1160, 340, 1160, 1160, 1160, 1160, 1160, 1160, - 340, 1160, 1160, 1160, 1160, 1160, 340, 340, - 1160, 1160, 340, 1160, 1160, 340, 1160, 1160, - 1160, 1160, 1160, 340, 1160, 1160, 1160, 340, - 1160, 1160, 340, 1160, 1160, 340, 1160, 340, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 340, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 340, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 340, 340, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 340, 1160, - 340, 340, 340, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 340, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 340, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 1160, 1160, 1160, 1160, 1160, 1160, - 340, 340, 1160, 1160, 340, 1160, 340, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -4538,127 +4848,125 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1183, 1183, 1183, 1183, 1183, 1183, 0, + 0, 1183, 0, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 0, + 1183, 1183, 0, 0, 0, 1183, 0, 0, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 0, + 1180, 5999, 5999, 5999, 5999, 5999, 5999, 5999, + 5999, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 6000, 6000, 5999, 5999, 5999, 5999, 5999, 5999, + 5999, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 0, 0, 0, 0, 0, 0, 0, 0, + 5999, 5999, 5999, 5999, 5999, 5999, 5999, 5999, + 5999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1156, 1156, 1156, 1106, 1156, 1106, 0, - 0, 1156, 0, 1106, 1156, 1156, 1156, 1156, - 1156, 1106, 1156, 1106, 1156, 1156, 1156, 1156, - 1156, 1156, 1106, 1156, 1156, 1156, 1156, 1106, - 1156, 1106, 1156, 1156, 1106, 1106, 1156, 1106, - 1156, 1106, 1106, 1106, 1106, 1156, 1106, 1106, - 1106, 1106, 1106, 1156, 1106, 1156, 1106, 0, - 1156, 1106, 0, 0, 0, 1156, 0, 0, - 1156, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 0, - 1103, 5640, 5640, 5640, 5640, 5640, 5640, 5640, - 5640, 1156, 1156, 1156, 1106, 1106, 1106, 1106, - 1156, 1106, 1106, 1156, 1106, 1156, 1106, 1106, - 1156, 1156, 1106, 1156, 1156, 1106, 1156, 1156, - 5641, 5641, 5640, 5640, 5642, 5642, 5642, 5642, - 5640, 1156, 1106, 1156, 1156, 1156, 1106, 1106, - 1106, 1106, 1106, 1156, 1156, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1156, - 1156, 1106, 1156, 1156, 1106, 1106, 1106, 1106, 0, 0, 0, 0, 0, 0, 0, 0, - 5640, 5640, 5640, 5640, 5640, 5640, 5640, 5640, - 5640, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 0, 1183, 1183, 0, + 0, 0, 0, 0, 5999, 5999, 5999, 5999, + 5999, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 5999, + 5999, 5999, 5999, 5999, 5999, 0, 0, 0, + 9, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 0, 0, 0, 0, 0, + 1180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 0, 1106, 1106, 0, - 0, 0, 0, 0, 5640, 5640, 5640, 5640, - 5640, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 5640, - 5640, 5640, 5640, 5640, 5640, 0, 0, 0, - 9, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 0, 0, 0, 0, 0, - 1103, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1156, 1106, 1156, 1156, 1156, 1156, 1156, - 1106, 1156, 1156, 1156, 1156, 1156, 1156, 1156, - 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, - 1106, 1156, 1156, 1156, 1156, 1156, 1156, 1106, - 1156, 1156, 1106, 1156, 1106, 1156, 1106, 1106, - 1106, 1106, 1156, 1106, 1156, 1106, 1156, 1106, - 1106, 1106, 1156, 1106, 1156, 1106, 1156, 1156, - 1106, 0, 0, 0, 0, 5642, 5640, 1106, - 1156, 5640, 5640, 5640, 5640, 5642, 5642, 5642, - 5640, 5640, 5642, 5642, 5642, 5642, 5642, 5642, - 5642, 0, 0, 5642, 5642, 5642, 5642, 5642, - 5642, 5642, 5642, 5642, 5642, 5642, 5642, 5642, - 5642, 5642, 5642, 5642, 5642, 5642, 5642, 5642, - 5642, 5642, 5642, 5642, 5642, 5642, 5642, 5642, - 5642, 5642, 5642, 5642, 5642, 5642, 5642, 5640, - 5640, 5640, 5640, 5642, 5640, 5642, 5642, 5642, - 5642, 1156, 1153, 1153, 1153, 0, 1153, 1153, - 0, 0, 0, 0, 0, 1153, 553, 1153, - 540, 1156, 1156, 1156, 1156, 0, 1156, 1156, - 1156, 0, 1156, 1156, 1156, 1156, 1156, 1156, - 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, - 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, - 1156, 1156, 1156, 1156, 1156, 0, 0, 0, - 0, 540, 566, 553, 0, 0, 0, 0, - 1168, 5642, 5642, 5642, 5642, 5642, 5642, 5642, - 5642, 0, 0, 0, 0, 0, 0, 0, - 0, 1158, 1158, 1158, 1158, 1158, 1158, 1158, - 1158, 1158, 0, 0, 0, 0, 0, 0, - 0, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 5640, 5640, - 1103, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 5640, 5640, - 5640, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1106, 1156, 1156, 1106, 1106, 1106, 1156, - 1106, 5643, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1156, 1156, 1156, 1106, 1156, 1156, 1156, - 1106, 1156, 1156, 1156, 1156, 1156, 1156, 1156, - 1156, 1156, 1106, 1156, 1156, 1106, 540, 553, - 0, 0, 0, 0, 5640, 5642, 5642, 5642, - 5642, 1158, 1158, 1158, 1158, 1103, 1103, 1103, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1106, 1156, 1156, 1156, 1156, 1106, 1106, - 1106, 1156, 1156, 1156, 1156, 1106, 1106, 1106, - 1106, 1106, 1156, 1156, 1156, 1156, 1106, 1156, - 1106, 1106, 1106, 1106, 1156, 1106, 1106, 1106, - 1106, 1156, 1156, 1106, 1106, 1106, 1106, 1106, - 1156, 1106, 1106, 1156, 1156, 1106, 1106, 1106, - 1106, 1106, 1156, 1156, 1156, 1156, 1156, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 0, 0, 0, 0, 5999, 5999, 1183, + 1183, 5999, 5999, 5999, 5999, 5999, 5999, 5999, + 5999, 5999, 5999, 5999, 5999, 5999, 5999, 5999, + 5999, 0, 0, 5999, 5999, 5999, 5999, 5999, + 5999, 5999, 5999, 5999, 5999, 5999, 5999, 5999, + 5999, 5999, 5999, 5999, 5999, 5999, 5999, 5999, + 5999, 5999, 5999, 5999, 5999, 5999, 5999, 5999, + 5999, 5999, 5999, 5999, 5999, 5999, 5999, 5999, + 5999, 5999, 5999, 5999, 5999, 5999, 5999, 5999, + 5999, 1183, 1226, 1226, 1226, 0, 1226, 1226, + 0, 0, 0, 0, 0, 1226, 628, 1226, + 615, 1183, 1183, 1183, 1183, 0, 1183, 1183, + 1183, 0, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 0, + 0, 615, 641, 628, 0, 0, 0, 0, + 1238, 5999, 5999, 5999, 5999, 5999, 5999, 5999, + 5999, 5999, 0, 0, 0, 0, 0, 0, + 0, 1180, 1180, 1180, 1180, 1180, 1180, 1180, + 1180, 1180, 0, 0, 0, 0, 0, 0, + 0, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 5999, 5999, + 1180, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 5999, 5999, + 5999, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 6000, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 615, 628, + 0, 0, 0, 0, 5999, 5999, 5999, 5999, + 5999, 1180, 1180, 1180, 1180, 1180, 1180, 1180, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 0, 0, 0, 9, 9, 9, 9, 9, 9, - 9, 1156, 1156, 1106, 1106, 1156, 1106, 1106, - 1106, 1156, 1106, 1156, 1106, 1156, 1156, 1106, - 1106, 1156, 1156, 1106, 1106, 1106, 1106, 0, - 0, 5640, 5640, 5640, 5640, 5640, 5640, 5642, - 5640, 1106, 1106, 1106, 1106, 1156, 1106, 1106, - 1156, 1106, 1106, 1106, 1106, 1156, 1106, 1156, - 1106, 1106, 1156, 1106, 0, 0, 0, 0, - 0, 5640, 5640, 5640, 5640, 5640, 5640, 5640, - 5640, 1106, 1156, 1106, 1156, 1106, 1106, 1106, - 1156, 1106, 1156, 1106, 1106, 1106, 1156, 1106, - 1106, 1156, 1106, 0, 0, 0, 0, 0, - 0, 0, 1158, 1158, 1158, 1158, 0, 0, + 9, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 0, + 0, 5999, 5999, 5999, 5999, 5999, 5999, 5999, + 5999, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 0, 0, 0, 0, + 0, 5999, 5999, 5999, 5999, 5999, 5999, 5999, + 5999, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 0, 0, 0, 0, 0, + 0, 0, 1180, 1180, 1180, 1180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 5640, 5640, 5640, 5642, 5640, 5640, - 5642, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 5999, 5999, 5999, 5999, 5999, 5999, + 5999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -4668,39 +4976,46 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 0, 0, 0, 0, 0, 0, + 0, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 5644, 5645, 5646, 5647, 5648, 5649, 5650, - 5651, 5652, 5653, 5654, 5655, 5656, 5657, 5658, - 5659, 5660, 5661, 5662, 5663, 5664, 5665, 5666, - 5667, 5668, 5669, 5670, 5671, 5672, 5673, 5674, - 5675, 5676, 5677, 5678, 5679, 5680, 5681, 5682, - 5683, 5684, 5685, 5686, 5687, 5688, 5689, 5690, - 5691, 5692, 5693, 5694, 0, 0, 0, 0, + 0, 6001, 6002, 6003, 6004, 6005, 6006, 6007, + 6008, 6009, 6010, 6011, 6012, 6013, 6014, 6015, + 6016, 6017, 6018, 6019, 6020, 6021, 6022, 6023, + 6024, 6025, 6026, 6027, 6028, 6029, 6030, 6031, + 6032, 6033, 6034, 6035, 6036, 6037, 6038, 6039, + 6040, 6041, 6042, 6043, 6044, 6045, 6046, 6047, + 6048, 6049, 6050, 6051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 5695, 5696, 5697, 5698, 5699, 5700, 5701, - 5702, 5703, 5704, 5705, 5706, 5707, 5708, 5709, - 5710, 5711, 5712, 5713, 5714, 5715, 5716, 5717, - 5718, 5719, 5720, 5721, 5722, 5723, 5724, 5725, - 5726, 5727, 5728, 5729, 5730, 5731, 5732, 5733, - 5734, 5735, 5736, 5737, 5738, 5739, 5740, 5741, - 5742, 5743, 5744, 5745, 0, 0, 0, 0, - 0, 0, 0, 5640, 5640, 5640, 5640, 5640, - 5640, 0, 0, 0, 0, 0, 0, 0, + 0, 6052, 6053, 6054, 6055, 6056, 6057, 6058, + 6059, 6060, 6061, 6062, 6063, 6064, 6065, 6066, + 6067, 6068, 6069, 6070, 6071, 6072, 6073, 6074, + 6075, 6076, 6077, 6078, 6079, 6080, 6081, 6082, + 6083, 6084, 6085, 6086, 6087, 6088, 6089, 6090, + 6091, 6092, 6093, 6094, 6095, 6096, 6097, 6098, + 6099, 6100, 6101, 6102, 0, 0, 0, 0, + 0, 0, 0, 5999, 5999, 5999, 5999, 5999, + 5999, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 615, 615, 615, + 615, 0, 0, 0, 0, 0, 0, 0, + 0, 1210, 1210, 1210, 1210, 1210, 1210, 1210, + 1210, 1210, 1210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -4737,6 +5052,17 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 6103, 6103, 6103, 6103, 6103, 6103, 6103, + 6103, 6103, 6103, 6103, 6103, 6103, 6103, 6103, + 6103, 6103, 6103, 6103, 6103, 6103, 6103, 6103, + 6103, 6103, 6103, 6103, 6103, 6103, 6103, 6103, + 0, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 0, 615, 615, 1178, 0, + 0, 1183, 1183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -4744,12 +5070,20 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 5746, 5746, 5747, 5746, 5746, 5746, 5746, - 5746, 5747, 5746, 5746, 5747, 5747, 5747, 5746, - 5746, 5747, 5746, 5746, 5746, 5747, 5747, 5746, - 5747, 5747, 5746, 5746, 5747, 5747, 5747, 5747, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 5999, 5999, + 5999, 5999, 5999, 5999, 5999, 5999, 5999, 5999, + 1183, 0, 0, 0, 0, 0, 0, 0, + 0, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, + 1192, 1192, 1192, 1192, 1192, 1192, 1192, 628, + 628, 615, 615, 615, 628, 615, 628, 628, + 628, 628, 6104, 6104, 6104, 6104, 1187, 1187, + 1187, 1187, 1187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -4760,121 +5094,130 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 5999, 5999, + 5999, 5999, 5999, 5999, 5999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1230, 1226, 1230, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1238, + 1120, 1120, 1120, 1120, 1120, 1120, 1120, 0, + 0, 0, 0, 1286, 1286, 1286, 1286, 1286, + 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, + 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1247, + 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1159, 1153, 1159, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1168, - 1177, 1177, 1177, 1177, 1177, 1177, 1177, 0, - 0, 0, 0, 1220, 1220, 1220, 1220, 1220, - 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, - 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1178, - 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 0, 0, 0, 0, 0, 0, 0, + 1238, 1226, 1226, 1230, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 6105, 6106, 6107, 6108, 346, 346, + 346, 346, 346, 346, 346, 346, 6109, 346, + 346, 346, 346, 346, 6110, 346, 346, 346, + 346, 1230, 1230, 1230, 1226, 1226, 1226, 1226, + 1230, 1230, 1238, 6111, 1120, 1120, 6112, 1120, + 1120, 1120, 1120, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 6112, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 0, 0, 0, 0, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, + 0, 615, 615, 615, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 6113, 1226, 1226, 1226, 1226, 1230, 1226, 6114, + 6115, 1226, 6116, 6117, 1238, 1238, 0, 1247, + 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1120, 1120, 1120, 1120, 346, 1230, 1230, + 346, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 1248, 1120, 1120, 346, 0, 0, 0, 0, 0, 0, 0, 0, - 1168, 1153, 1153, 1159, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 5748, 5749, 5750, 5751, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 5752, 1160, - 1160, 1160, 1160, 1160, 5753, 1160, 1160, 1160, - 1160, 1159, 1159, 1159, 1153, 1153, 1153, 1153, - 1159, 1159, 1168, 5754, 1177, 1177, 5755, 1177, - 1177, 1177, 1177, 0, 0, 0, 0, 0, + 0, 1226, 1226, 1230, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 1230, 1230, 1230, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1230, 1558, 346, 1303, 1303, 346, 1120, 1120, + 1120, 1120, 1226, 1248, 1226, 1226, 1120, 1230, + 1226, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 346, 1120, 346, 1120, 1120, + 1120, 0, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 0, 0, 0, 0, 0, 0, - 0, 1250, 1250, 1250, 1250, 1250, 1250, 1250, - 1250, 1250, 1250, 0, 0, 0, 0, 0, - 0, 540, 540, 540, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 5756, 1153, 1153, 1153, 1153, 1159, 1153, 5757, - 5758, 1153, 5759, 5760, 1168, 1168, 0, 1178, - 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1177, 1177, 1177, 1177, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 0, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 1230, 1230, 1230, + 1226, 1226, 1226, 1230, 1230, 1226, 1558, 1248, + 1226, 1120, 1120, 1120, 1120, 1120, 1120, 1226, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 340, 340, 340, 1160, 340, 340, - 340, 340, 1160, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 1160, 340, 1160, - 1160, 1160, 1160, 1160, 340, 1160, 340, 1160, - 340, 340, 340, 340, 1180, 1044, 1044, 1160, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1153, 1153, 1159, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1159, 1159, 1159, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1159, 1452, 1160, 1237, 1237, 1160, 1177, 1177, - 1177, 1177, 1177, 1180, 1153, 1153, 1177, 0, - 0, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 1160, 1177, 1160, 1177, 1177, - 1177, 0, 1190, 1190, 1190, 1190, 1190, 1190, - 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, - 1190, 1190, 1190, 1190, 1190, 1190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 0, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1159, 1159, 1159, - 1153, 1153, 1153, 1159, 1159, 1153, 1452, 1180, - 1153, 1177, 1177, 1177, 1177, 1177, 1177, 1153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 0, 346, 0, 346, 346, 346, 346, 0, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 0, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 1120, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 1226, 1230, 1230, 1230, 1226, 1226, 1226, 1226, + 1226, 1226, 1248, 1238, 0, 0, 0, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, + 0, 1226, 1226, 1230, 1230, 0, 346, 346, + 346, 346, 346, 346, 346, 346, 0, 0, + 346, 346, 0, 0, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 346, 0, 346, 346, + 346, 346, 346, 0, 1248, 1248, 346, 6118, + 1230, 1226, 1230, 1230, 1230, 1230, 0, 0, + 6119, 1230, 0, 0, 6120, 6121, 1558, 0, + 0, 346, 0, 0, 0, 0, 0, 0, + 6122, 0, 0, 0, 0, 0, 346, 346, + 346, 346, 346, 1230, 1230, 0, 0, 615, + 615, 615, 615, 615, 615, 615, 0, 0, + 0, 615, 615, 615, 615, 615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 0, 1160, 0, 1160, 1160, 1160, 1160, 0, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 0, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1177, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1153, 1159, 1159, 1159, 1153, 1153, 1153, 1153, - 1153, 1153, 1180, 1168, 0, 0, 0, 0, - 0, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 0, 0, 0, 0, 0, - 0, 1153, 1153, 1159, 1159, 0, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 0, 0, - 1160, 1160, 0, 0, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1160, 0, 1160, 1160, - 1160, 1160, 1160, 0, 0, 1180, 1160, 5761, - 1159, 1153, 1159, 1159, 1159, 1159, 0, 0, - 5762, 1159, 0, 0, 5763, 5764, 1452, 0, - 0, 1160, 0, 0, 0, 0, 0, 0, - 5765, 0, 0, 0, 0, 0, 1160, 1160, - 1160, 1160, 1160, 1159, 1159, 0, 0, 540, - 540, 540, 540, 540, 540, 540, 0, 0, - 0, 540, 540, 540, 540, 540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -4889,37 +5232,38 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 1230, 1230, + 1230, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1230, 1230, 1238, 1226, 1226, 1230, 1248, + 346, 346, 346, 346, 1120, 1120, 1120, 1120, + 1120, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 1120, 1120, 0, 1120, 615, + 346, 346, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1159, 1159, - 1159, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1159, 1159, 1168, 1153, 1153, 1159, 1180, - 1160, 1160, 1160, 1160, 1177, 1177, 1177, 1177, - 1177, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 0, 1177, 0, 1177, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 6123, 1230, 1230, 1226, 1226, 1226, 1226, + 1226, 1226, 6124, 6125, 6126, 6127, 6128, 6129, + 1226, 1226, 1230, 1238, 1248, 346, 346, 1120, + 346, 0, 0, 0, 0, 0, 0, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 5766, 1159, 1159, 1153, 1153, 1153, 1153, - 1153, 1153, 5767, 5768, 5769, 5770, 5771, 5772, - 1153, 1153, 1159, 1168, 1180, 1160, 1160, 1177, - 1160, 0, 0, 0, 0, 0, 0, 0, - 0, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -4936,67 +5280,67 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 6130, 1230, 1230, 1226, 1226, 1226, 1226, 0, + 0, 6131, 6132, 6133, 6134, 1226, 1226, 1230, + 1238, 1248, 1120, 1120, 1120, 1120, 1120, 1120, + 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, + 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, + 1120, 346, 346, 346, 346, 1226, 1226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 5773, 1159, 1159, 1153, 1153, 1153, 1153, 0, - 0, 5774, 5775, 5776, 5777, 1153, 1153, 1159, - 1168, 1180, 1177, 1177, 1177, 1177, 1177, 1177, - 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, - 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, - 1177, 1160, 1160, 1160, 1160, 1153, 1153, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 1230, 1230, 1230, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1230, 1230, 1226, 1230, + 1238, 1226, 1120, 1120, 1120, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, + 0, 9, 9, 9, 9, 9, 9, 9, + 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 1226, 1230, 1226, 1230, + 1230, 1226, 1226, 1226, 1226, 1226, 1226, 1558, + 1248, 346, 0, 0, 0, 0, 0, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1159, 1159, 1159, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1159, 1159, 1153, 1159, - 1168, 1153, 1177, 1177, 1177, 1160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 0, 0, 0, 0, 0, - 0, 1428, 1428, 1428, 1428, 1428, 1428, 1428, - 1428, 1428, 1428, 1428, 1428, 1428, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1153, 1159, 1153, 1159, - 1159, 1153, 1153, 1153, 1153, 1153, 1153, 1452, - 1180, 0, 0, 0, 0, 0, 0, 0, - 0, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 0, 0, 1226, 1226, + 1226, 1230, 1230, 1226, 1226, 1226, 1226, 1230, + 1226, 1226, 1226, 1226, 1238, 0, 0, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 1257, 1257, 1120, 1120, 1120, + 914, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 0, 0, 0, 1153, 1153, - 1153, 1159, 1159, 1153, 1153, 1153, 1153, 1159, - 1153, 1153, 1153, 1153, 1168, 0, 0, 0, - 0, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 1190, 1190, 1177, 1177, 1177, - 1191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5016,6 +5360,14 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 1230, 1230, 1230, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1230, 1238, 1248, 1120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5028,8 +5380,30 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 6135, 6136, 6137, 6138, 6139, 6140, 6141, + 6142, 6143, 6144, 6145, 6146, 6147, 6148, 6149, + 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, + 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, + 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173, + 6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, + 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, + 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, + 6198, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 346, 346, 346, 346, 346, 346, 346, 346, + 0, 0, 346, 0, 0, 346, 346, 346, + 346, 346, 346, 346, 346, 0, 346, 346, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 6199, 1230, 1230, 1230, 1230, 6200, 0, + 1230, 6201, 0, 0, 1226, 1226, 1558, 1238, + 1303, 1230, 1303, 1230, 1248, 1120, 1120, 1120, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5038,24 +5412,50 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 0, 0, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 1230, 1230, 1230, 1226, 1226, 1226, + 1226, 0, 0, 1226, 1226, 1230, 1230, 1230, + 1230, 1238, 346, 1120, 346, 1230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 5778, 5779, 5780, 5781, 5782, 5783, 5784, - 5785, 5786, 5787, 5788, 5789, 5790, 5791, 5792, - 5793, 5794, 5795, 5796, 5797, 5798, 5799, 5800, - 5801, 5802, 5803, 5804, 5805, 5806, 5807, 5808, - 5809, 5810, 5811, 5812, 5813, 5814, 5815, 5816, - 5817, 5818, 5819, 5820, 5821, 5822, 5823, 5824, - 5825, 5826, 5827, 5828, 5829, 5830, 5831, 5832, - 5833, 5834, 5835, 5836, 5837, 5838, 5839, 5840, - 5841, 1250, 1250, 1250, 1250, 1250, 1250, 1250, - 1250, 1250, 1250, 5484, 5484, 5484, 5484, 5484, - 5484, 5484, 5484, 5484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 340, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 1226, 1226, 1226, 1226, 1226, 1226, + 6202, 6202, 1226, 1226, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 1226, 1238, 1226, 1226, + 1226, 1226, 1230, 1303, 1226, 1226, 1226, 1226, + 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, + 1238, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 1226, 1226, 1226, 1226, 1226, 1226, + 1230, 1230, 1226, 1226, 1226, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 1303, 1303, 1303, + 1303, 1303, 1303, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1230, 1226, 1238, 1120, 1120, 1120, 346, 1120, + 1120, 1120, 1120, 1120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5076,37 +5476,7 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 0, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 5842, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 0, 1153, 1153, 1153, 1153, 1153, 1153, 1159, - 5843, 1160, 1177, 1177, 1177, 1177, 1177, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1178, 1178, 1178, 1178, 1178, 1178, 1178, - 1178, 1178, 1178, 1190, 1190, 1190, 1190, 1190, - 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, - 1190, 1190, 1190, 1190, 1190, 1190, 0, 0, - 0, 1044, 1044, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 0, 0, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 0, 1159, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1159, 1153, 1153, 1159, 1153, 1153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5116,61 +5486,31 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 1230, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 0, 1226, 1226, 1226, 1226, 1226, 1226, 1230, + 6203, 346, 1120, 1120, 1120, 1120, 1120, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 0, 0, + 0, 1120, 1120, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 0, 0, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 0, 1230, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1230, 1226, 1226, 1230, 1226, 1226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5180,47 +5520,29 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1426, 1426, 1426, 1426, 1426, 1426, 1426, - 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, - 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, - 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, - 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, - 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, - 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, - 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, - 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, - 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, - 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, - 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, - 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, - 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, - 0, 1044, 1044, 1044, 1044, 1044, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 0, 346, 346, 0, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 1226, 1226, 1226, 1226, 1226, 1226, + 0, 0, 0, 1226, 0, 1226, 1226, 0, + 1226, 1226, 1226, 1248, 1226, 1238, 1238, 1303, + 1226, 0, 0, 0, 0, 0, 0, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 0, + 346, 346, 0, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 1230, 1230, 1230, 1230, 1230, + 0, 1226, 1226, 0, 1230, 1230, 1226, 1230, + 1238, 346, 0, 0, 0, 0, 0, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5244,12 +5566,6 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5264,6 +5580,10 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 1226, 1226, 1230, 1230, + 1120, 1120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5276,15 +5596,6 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5295,8 +5606,36 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 77, 77, + 77, 77, 77, 77, 77, 77, 11, 11, + 11, 11, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1120, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5308,23 +5647,48 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 0, 1250, 1250, 1250, 1250, 1250, 1250, 1250, - 1250, 1250, 1250, 0, 0, 0, 0, 1044, - 1044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 0, 1120, 1120, 1120, 1120, 1120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5334,31 +5698,8 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 0, - 0, 566, 566, 566, 566, 566, 1044, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 540, 540, 540, 540, 540, 540, 540, - 1044, 1044, 1044, 1044, 1044, 838, 838, 838, - 838, 523, 523, 523, 523, 1044, 838, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1250, 1250, 1250, 1250, 1250, 1250, 1250, - 1250, 1250, 1250, 0, 5484, 5484, 5484, 5484, - 5484, 5484, 5484, 0, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 0, 0, 0, 0, 0, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5371,28 +5712,18 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 0, 6204, 6204, 6204, 6204, 6204, 6204, 6204, + 6204, 6204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1159, 1159, 1159, 1159, 1159, 1159, - 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, - 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, - 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, - 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, - 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1153, 1153, 1153, 1153, 1179, 1179, 1179, 1179, - 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, - 1179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5400,75 +5731,12 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5476,6 +5744,15 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5499,28 +5776,22 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 1120, + 1120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 1160, 1160, - 1160, 1160, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 1160, 1160, 340, 340, - 1160, 1160, 340, 340, 1160, 1160, 1160, 1160, - 340, 340, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 1160, 1160, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 1160, 340, 340, 340, 1160, 340, 340, - 1160, 1160, 1160, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 340, 1160, 340, 340, 340, 340, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 0, 0, 0, 0, 0, 0, - 0, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 0, 0, 1191, 1153, 566, - 1177, 81, 81, 81, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5531,80 +5802,33 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 0, + 0, 641, 641, 641, 641, 641, 1120, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 838, 838, 838, 838, 838, 838, 838, - 838, 1191, 1191, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 1191, 838, 1191, 838, - 838, 838, 1191, 838, 838, 838, 1191, 1191, - 1191, 838, 1191, 838, 1191, 838, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 838, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 838, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 838, 838, 1191, 1191, 1191, 1191, 1191, 838, - 838, 838, 838, 1191, 838, 1191, 1191, 1191, - 838, 838, 838, 1191, 1191, 1191, 1191, 1191, - 838, 1191, 1191, 1191, 838, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 838, 1191, 1191, 1191, 838, - 838, 838, 1191, 1191, 838, 838, 838, 838, - 1191, 1191, 838, 838, 838, 1191, 1191, 838, - 838, 838, 838, 1191, 1191, 1191, 1191, 1191, - 838, 838, 838, 838, 838, 838, 1191, 838, - 838, 1191, 1191, 1191, 838, 1191, 1191, 1191, - 1191, 838, 838, 1191, 838, 1191, 838, 1191, - 1191, 1191, 1191, 1191, 1191, 838, 838, 838, - 1191, 1191, 838, 838, 838, 1191, 838, 1191, - 838, 1191, 838, 838, 1191, 1191, 1191, 1191, - 838, 1191, 1191, 1191, 838, 1191, 1191, 1191, - 1191, 838, 1191, 1191, 1191, 838, 1191, 1191, - 1191, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 1191, - 838, 1191, 838, 838, 838, 838, 838, 838, - 838, 1191, 838, 1191, 838, 838, 838, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 615, 615, 615, 615, 615, 615, 615, + 1120, 1120, 1120, 1120, 1120, 914, 914, 914, + 914, 596, 596, 596, 596, 1120, 914, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 838, 1191, 838, 838, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 838, - 838, 838, 1191, 1191, 1191, 1191, 838, 838, - 0, 0, 1191, 838, 1191, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 1191, - 1191, 1191, 1191, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 5844, 5845, 1191, 838, 838, 1191, 838, 5846, - 5847, 5848, 5849, 5850, 5851, 5852, 5853, 5854, - 566, 566, 566, 1191, 1191, 1191, 5855, 5856, - 5857, 5858, 5859, 5860, 81, 81, 81, 81, - 81, 81, 81, 81, 553, 553, 553, 553, - 553, 553, 553, 553, 838, 838, 540, 540, - 540, 540, 540, 553, 553, 838, 838, 838, - 838, 838, 838, 1191, 1191, 838, 838, 1191, - 1191, 1191, 1191, 838, 838, 1191, 1191, 838, - 838, 838, 838, 838, 1191, 1191, 838, 1191, - 1191, 838, 838, 540, 540, 540, 540, 1191, - 1191, 1191, 1191, 1191, 1191, 838, 1191, 1191, - 1191, 1191, 5861, 5862, 5863, 5864, 5865, 5866, - 5867, 5868, 838, 838, 838, 838, 838, 838, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 838, 838, 838, 838, 838, 838, 838, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 0, 0, 0, 0, 0, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 0, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 0, 0, 0, 0, 0, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 540, 540, 540, 1085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5624,209 +5848,22 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 6205, 6206, 6207, 6208, 6209, 6210, 6211, + 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, + 6220, 6221, 6222, 6223, 6224, 6225, 6226, 6227, + 6228, 6229, 6230, 6231, 6232, 6233, 6234, 6235, + 6236, 6237, 6238, 6239, 6240, 6241, 6242, 6243, + 6244, 6245, 6246, 6247, 6248, 6249, 6250, 6251, + 6252, 6253, 6254, 6255, 6256, 6257, 6258, 6259, + 6260, 6261, 6262, 6263, 6264, 6265, 6266, 6267, + 6268, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1120, 1120, 1120, 1120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1190, 1190, 1190, 1190, 1190, 1190, 1190, - 1190, 1190, 5484, 1190, 1190, 1190, 1190, 1190, - 1190, 1190, 1190, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 5869, 2157, 2132, 5870, 2159, 2160, 5871, - 2139, 2142, 5872, 5873, 2143, 2162, 2145, 5874, - 2147, 2148, 2149, 5875, 5876, 5877, 5878, 5879, - 5880, 5881, 2153, 5882, 5883, 5884, 5885, 2158, - 5886, 2138, 2140, 2168, 2177, 5887, 2144, 5888, - 5889, 2163, 5890, 5891, 5892, 5893, 5894, 5895, - 5896, 5897, 5898, 5899, 5900, 5901, 5902, 5903, - 2175, 5904, 5905, 5906, 5907, 5908, 5909, 5910, - 5911, 5912, 5913, 5914, 5915, 5916, 5917, 5918, - 5919, 5920, 5921, 5922, 5923, 5924, 5925, 5926, - 5927, 5928, 2176, 5929, 5930, 5931, 0, 5932, - 5933, 5934, 5935, 5936, 5937, 5938, 5939, 5940, - 5941, 5942, 5943, 5944, 5945, 5946, 5947, 5948, - 5949, 5901, 5902, 5903, 2175, 5904, 5905, 5906, - 5907, 5908, 5909, 5910, 5911, 5912, 5913, 5914, - 5915, 5916, 5917, 5918, 5919, 5920, 5921, 5922, - 5923, 5924, 5925, 5926, 5927, 5928, 2176, 5929, - 5930, 5931, 5950, 5932, 5933, 5934, 5935, 5936, - 5937, 5938, 5939, 5940, 5941, 5942, 5943, 5944, - 5945, 5946, 5947, 5948, 5949, 5901, 0, 5903, - 2175, 0, 0, 5906, 0, 0, 5909, 5910, - 0, 0, 5913, 5914, 5915, 5916, 0, 5918, - 5919, 5920, 5921, 5922, 5923, 5924, 5925, 5926, - 5927, 5928, 2176, 0, 5930, 0, 5950, 5932, - 5933, 5934, 5935, 5936, 5937, 0, 5939, 5940, - 5941, 5942, 5943, 5944, 5945, 5946, 5947, 5948, - 5949, 5901, 5902, 5903, 2175, 5904, 5905, 5906, - 5907, 5908, 5909, 5910, 5911, 5912, 5913, 5914, - 5915, 5916, 5917, 5918, 5919, 5920, 5921, 5922, - 5923, 5924, 5925, 5926, 5927, 5928, 2176, 5929, - 5930, 5931, 5950, 5932, 5933, 5934, 5935, 5936, - 5937, 5938, 5939, 5940, 5941, 5942, 5943, 5944, - 5945, 5946, 5947, 5948, 5949, 5869, 2157, 0, - 5870, 2159, 2160, 5871, 0, 0, 5872, 5873, - 2143, 2162, 2145, 5874, 2147, 2148, 0, 5875, - 5876, 5877, 5878, 5879, 5880, 5881, 0, 5882, - 5883, 5884, 5885, 2158, 5886, 2138, 2140, 2168, - 2177, 5887, 2144, 5888, 5889, 2163, 5890, 5891, - 5892, 5893, 5894, 5895, 5896, 5897, 5898, 5899, - 5900, 5869, 2157, 0, 5870, 2159, 2160, 5871, - 0, 2142, 5872, 5873, 2143, 2162, 0, 5874, - 0, 0, 0, 5875, 5876, 5877, 5878, 5879, - 5880, 5881, 0, 5882, 5883, 5884, 5885, 2158, - 5886, 2138, 2140, 2168, 2177, 5887, 2144, 5888, - 5889, 2163, 5890, 5891, 5892, 5893, 5894, 5895, - 5896, 5897, 5898, 5899, 5900, 5869, 2157, 2132, - 5870, 2159, 2160, 5871, 2139, 2142, 5872, 5873, - 2143, 2162, 2145, 5874, 2147, 2148, 2149, 5875, - 5876, 5877, 5878, 5879, 5880, 5881, 2153, 5882, - 5883, 5884, 5885, 2158, 5886, 2138, 2140, 2168, - 2177, 5887, 2144, 5888, 5889, 2163, 5890, 5891, - 5892, 5893, 5894, 5895, 5896, 5897, 5898, 5899, - 5900, 5869, 2157, 2132, 5870, 2159, 2160, 5871, - 2139, 2142, 5872, 5873, 2143, 2162, 2145, 5874, - 2147, 2148, 2149, 5875, 5876, 5877, 5878, 5879, - 5880, 5881, 2153, 5882, 5883, 5884, 5885, 2158, - 5886, 2138, 2140, 2168, 2177, 5887, 2144, 5888, - 5889, 2163, 5890, 5891, 5892, 5893, 5894, 5895, - 5896, 5897, 5898, 5899, 5900, 5869, 2157, 2132, - 5870, 2159, 2160, 5871, 2139, 2142, 5872, 5873, - 2143, 2162, 2145, 5874, 2147, 2148, 2149, 5875, - 5876, 5877, 5878, 5879, 5880, 5881, 2153, 5882, - 5883, 5884, 5885, 2158, 5886, 2138, 2140, 2168, - 2177, 5887, 2144, 5888, 5889, 2163, 5890, 5891, - 5892, 5893, 5894, 5895, 5896, 5897, 5898, 5899, - 5900, 5901, 5902, 5903, 2175, 5904, 5905, 5906, - 5907, 5908, 5909, 5910, 5911, 5912, 5913, 5914, - 5915, 5916, 5917, 5918, 5919, 5920, 5921, 5922, - 5923, 5924, 5925, 5926, 5927, 5928, 2176, 5929, - 5930, 5931, 5950, 5932, 5933, 5934, 5935, 5936, - 5937, 5938, 5939, 5940, 5941, 5942, 5943, 5944, - 5945, 5946, 5947, 5948, 5949, 5901, 5902, 5903, - 2175, 5904, 5905, 5906, 5907, 5908, 5909, 5910, - 5911, 5912, 5913, 5914, 5915, 5916, 5917, 5918, - 5919, 5920, 5921, 5922, 5923, 5924, 5925, 5926, - 5927, 5928, 2176, 5929, 5930, 5931, 5950, 5932, - 5933, 5934, 5935, 5936, 5937, 5938, 5939, 5940, - 5941, 5942, 5943, 5944, 5945, 5946, 5947, 5948, - 5949, 5901, 5902, 5903, 2175, 5904, 5905, 5906, - 5907, 5908, 5909, 5910, 5911, 5912, 5913, 5914, - 5915, 5916, 5917, 5918, 5919, 5920, 5921, 5922, - 5923, 5924, 5925, 5926, 5927, 5928, 2176, 5929, - 5930, 5931, 5950, 5932, 5933, 5934, 5935, 5936, - 5937, 5938, 5939, 5940, 5941, 5942, 5943, 5944, - 5945, 5946, 5947, 5948, 5949, 5951, 5952, 0, - 0, 5953, 5954, 2172, 5955, 5956, 5957, 5958, - 5959, 5960, 5961, 5962, 5963, 5964, 5965, 5966, - 5967, 5968, 5969, 5970, 5971, 5972, 5973, 5974, - 5975, 5976, 5977, 5978, 5979, 5980, 5981, 5982, - 5983, 5984, 5985, 5986, 5987, 5988, 5989, 5990, - 5991, 5992, 5993, 5994, 5995, 5996, 5997, 5998, - 5999, 6000, 6001, 6002, 6003, 6004, 6005, 6006, - 6007, 6008, 6009, 6010, 6011, 6012, 6013, 6014, - 6015, 6016, 6017, 6018, 6019, 6020, 6021, 6022, - 6023, 6024, 2173, 6025, 6026, 6027, 6028, 6029, - 6030, 6031, 6032, 6033, 6034, 6035, 6036, 2171, - 6037, 6038, 6039, 6040, 6041, 6042, 6043, 6044, - 6045, 6046, 6047, 6048, 2170, 6049, 6050, 6051, - 6052, 6053, 6054, 6055, 6056, 6057, 6058, 6059, - 6005, 6060, 6061, 6062, 6063, 6010, 6011, 6012, - 6013, 6014, 6015, 6016, 6017, 6018, 6019, 6020, - 6021, 6022, 6023, 6024, 2173, 6025, 6026, 6027, - 6028, 6029, 6030, 6031, 6032, 6033, 6034, 6035, - 6036, 2171, 6037, 6038, 6039, 6040, 6041, 6042, - 6043, 6044, 6045, 6046, 6047, 6048, 2170, 6049, - 6050, 6051, 6052, 6053, 6054, 6055, 6056, 6057, - 6058, 6059, 6064, 6060, 6061, 6062, 6063, 5953, - 5954, 2172, 5955, 5956, 5957, 5958, 5959, 5960, - 5961, 5962, 5963, 5964, 5965, 5966, 5967, 5968, - 5969, 5970, 5971, 5972, 5973, 5974, 5975, 5976, - 5977, 5978, 5979, 5980, 5981, 5982, 5983, 5984, - 5985, 5986, 5987, 5988, 5989, 5990, 5991, 5992, - 5993, 5994, 5995, 5996, 5997, 5998, 5999, 6000, - 6001, 6002, 6003, 6004, 6005, 6006, 6007, 6008, - 6009, 6010, 6011, 6012, 6013, 6014, 6015, 6016, - 6017, 6018, 6019, 6020, 6021, 6022, 6023, 6024, - 2173, 6025, 6026, 6027, 6028, 6029, 6030, 6031, - 6032, 6033, 6034, 6035, 6036, 2171, 6037, 6038, - 6039, 6040, 6041, 6042, 6043, 6044, 6045, 6046, - 6047, 6048, 2170, 6049, 6050, 6051, 6052, 6053, - 6054, 6055, 6056, 6057, 6058, 6059, 6064, 6060, - 6061, 6062, 6063, 6065, 6066, 0, 0, 6067, - 6068, 6069, 6070, 6071, 6072, 6073, 6074, 6075, - 6076, 6067, 6068, 6069, 6070, 6071, 6072, 6073, - 6074, 6075, 6076, 6067, 6068, 6069, 6070, 6071, - 6072, 6073, 6074, 6075, 6076, 6067, 6068, 6069, - 6070, 6071, 6072, 6073, 6074, 6075, 6076, 6077, - 6078, 6079, 6080, 6081, 6082, 6083, 6084, 6085, - 6086, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 838, 838, 838, 838, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 838, 838, - 838, 838, 838, 838, 838, 838, 1153, 838, - 838, 838, 838, 838, 838, 838, 838, 838, - 838, 838, 838, 838, 838, 1153, 838, 838, - 1044, 1044, 1044, 1044, 1044, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1153, 1153, 1153, 1153, - 1153, 0, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, - 1153, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 540, 540, 540, 540, 540, 540, 540, - 0, 540, 540, 540, 540, 540, 540, 540, - 540, 540, 540, 540, 540, 540, 540, 540, - 540, 540, 0, 0, 540, 540, 540, 540, - 540, 540, 540, 0, 540, 540, 0, 540, - 540, 540, 540, 540, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5835,6 +5872,27 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 0, 0, 0, 0, + 1226, 346, 1230, 1230, 1230, 1230, 1230, 1230, + 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, + 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, + 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, + 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, + 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, + 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, + 1230, 0, 0, 0, 0, 0, 0, 0, + 1226, 1226, 1226, 1226, 596, 596, 596, 596, + 596, 596, 596, 596, 596, 596, 596, 596, + 596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5842,61 +5900,87 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3220, 3220, 3219, 3220, 1226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 6269, 6269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 0, 0, 0, 0, 0, 0, 0, + 0, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1156, 1156, 1156, 1156, 1156, 1156, 1156, - 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, - 1156, 1156, 1156, 1156, 1106, 1106, 1106, 1106, - 1106, 1156, 1156, 1106, 1106, 1106, 1106, 1106, - 1156, 1106, 1156, 1106, 1106, 1106, 1156, 1106, - 1156, 1156, 1106, 1106, 1106, 1106, 1156, 1106, - 1106, 1106, 1156, 1156, 1106, 1156, 1156, 1156, - 1156, 1156, 1156, 1156, 1106, 1106, 1156, 1156, - 1156, 1156, 1156, 1106, 1156, 1106, 1106, 1106, - 1106, 1106, 1156, 1156, 1106, 1106, 1106, 1106, - 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, - 1106, 1156, 1156, 1106, 1106, 1106, 1106, 1156, - 1156, 1156, 1156, 1106, 1156, 1156, 1156, 1156, - 1106, 1156, 1156, 1106, 1156, 1106, 1156, 1106, - 1156, 1156, 1106, 1106, 1106, 1106, 1106, 1156, - 1156, 1156, 1106, 1156, 1106, 1156, 1106, 1156, - 1156, 1156, 1156, 1106, 1156, 1156, 1156, 1156, - 1156, 1156, 1106, 1156, 1156, 1156, 1156, 1156, - 1156, 1106, 1106, 1156, 1156, 1156, 1106, 1106, - 1156, 1156, 1156, 1156, 1106, 1156, 1156, 1106, - 1156, 1156, 1156, 1156, 1106, 1156, 1156, 1106, - 1156, 1156, 1106, 1156, 1156, 1156, 1106, 1156, - 1156, 1156, 1156, 1106, 1106, 1156, 1156, 1106, - 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1106, - 1156, 1156, 1156, 1156, 1156, 1156, 0, 0, - 5642, 5642, 5642, 5642, 5642, 5642, 5642, 5642, - 5642, 553, 553, 553, 553, 553, 553, 553, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 6087, 6088, 6089, 6090, 6091, 6092, 6093, - 6094, 6095, 6096, 6097, 6098, 6099, 6100, 6101, - 6102, 6103, 6104, 6105, 6106, 6107, 6108, 6109, - 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, - 6118, 6119, 6120, 6121, 6122, 6123, 6124, 6125, - 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, - 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, - 6142, 6143, 6144, 6145, 6146, 6147, 6148, 6149, - 6150, 6151, 6152, 6153, 6154, 540, 540, 540, - 540, 540, 540, 1180, 0, 0, 0, 0, - 0, 1154, 1154, 1154, 1154, 1154, 1154, 1154, - 1154, 1154, 1154, 0, 0, 0, 0, 1103, - 1103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -5916,558 +6000,433 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 6155, 6156, 6157, 6158, 0, 6159, 6160, - 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, - 6169, 6170, 6171, 6172, 6173, 6174, 6175, 6176, - 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, - 6185, 0, 6156, 6157, 0, 6186, 0, 0, - 6161, 0, 6163, 6164, 6165, 6166, 6167, 6168, - 6169, 6170, 6171, 6172, 0, 6174, 6175, 6176, - 6177, 0, 6179, 0, 6181, 0, 0, 0, - 0, 0, 0, 6157, 0, 0, 0, 0, - 6161, 0, 6163, 0, 6165, 0, 6167, 6168, - 6169, 0, 6171, 6172, 0, 6174, 0, 0, - 6177, 0, 6179, 0, 6181, 0, 6183, 0, - 6185, 0, 6156, 6157, 0, 6187, 0, 0, - 6161, 6162, 6163, 6164, 0, 6166, 6167, 6168, - 6169, 6170, 6171, 6172, 0, 6174, 6175, 6176, - 6177, 0, 6179, 6180, 6181, 6182, 0, 6184, - 0, 6155, 6156, 6157, 6158, 6187, 6159, 6160, - 6161, 6162, 6163, 0, 6165, 6166, 6167, 6168, - 6169, 6170, 6171, 6172, 6173, 6174, 6175, 6176, - 6177, 6178, 6179, 6180, 6181, 0, 0, 0, - 0, 0, 6188, 6189, 6190, 0, 6191, 6192, - 6193, 6194, 6195, 0, 6196, 6197, 6198, 6199, - 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, - 6208, 6209, 6210, 6211, 6212, 0, 0, 0, + 0, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1109, 1109, 0, 0, 0, 0, 0, + 0, 3221, 3221, 3221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 77, 77, 77, 77, 77, + 0, 0, 0, 0, 0, 3221, 3221, 3221, + 3221, 0, 0, 0, 0, 0, 0, 0, + 0, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 0, 0, 914, 1226, 641, + 1120, 1534, 1534, 1534, 1534, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 0, 0, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 6270, 6271, 914, 914, 914, 914, 914, 6272, + 6273, 6274, 6275, 6276, 6277, 6278, 6279, 6280, + 641, 641, 641, 914, 914, 914, 6281, 6282, + 6283, 6284, 6285, 6286, 1534, 1534, 1534, 1534, + 1534, 1534, 1534, 1534, 628, 628, 628, 628, + 628, 628, 628, 628, 914, 914, 615, 615, + 615, 615, 615, 628, 628, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 615, 615, 615, 615, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 6287, 6288, 6289, 6290, 6291, 6292, + 6293, 6294, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, - 77, 77, 77, 77, 77, 0, 0, 0, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 615, 615, 615, 77, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, + 1257, 1257, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 0, 0, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 0, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 0, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 6213, 6214, 6215, 6216, 6217, 6218, 6219, - 6220, 6221, 6222, 6223, 1220, 1220, 0, 0, - 0, 6224, 6225, 6226, 6227, 6228, 6229, 6230, - 6231, 6232, 6233, 6234, 6235, 6236, 6237, 6238, - 6239, 6240, 6241, 6242, 6243, 6244, 6245, 6246, - 6247, 6248, 6249, 6250, 6251, 6252, 6253, 6254, - 0, 6255, 6256, 6257, 6258, 6259, 6260, 6261, - 6262, 6263, 6264, 6265, 6266, 6267, 6268, 6269, - 6270, 6271, 6272, 6273, 6274, 6275, 6276, 6277, - 6278, 6279, 6280, 6281, 3613, 6282, 6283, 6284, - 6285, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 6286, 6287, 0, 0, 0, - 0, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 6288, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 6289, - 6289, 6289, 6289, 6289, 6289, 6289, 6289, 6289, - 6289, 6289, 6289, 6289, 6289, 6289, 6289, 6289, - 6289, 6289, 6289, 6289, 6289, 6289, 6289, 6289, - 6289, 6290, 6291, 6292, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 6293, 6294, 6295, 6296, 6297, 6298, 6299, - 6300, 6301, 6302, 6303, 6304, 6305, 6306, 6307, - 6308, 6309, 6310, 6311, 6312, 6313, 6314, 6315, - 6316, 6317, 6318, 6319, 6320, 6321, 6322, 6323, - 6324, 6325, 6326, 6327, 6328, 6329, 6330, 6331, - 6332, 6333, 6334, 6335, 6336, 0, 0, 0, - 0, 6337, 6338, 6339, 6340, 6341, 6342, 6343, - 6344, 6345, 0, 0, 0, 0, 0, 0, - 0, 6346, 6347, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 2464, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 2464, 2464, 1085, 1085, - 1085, 1085, 1085, 2464, 2464, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 6348, 6348, 6348, 6348, - 6348, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 2464, 2464, 1085, 1085, 2464, - 2464, 2464, 2464, 2464, 2464, 2464, 2464, 2464, - 2464, 2464, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 6349, - 6349, 6349, 6349, 1085, 1085, 1085, 1085, 2464, - 1085, 2464, 2464, 2464, 2464, 2464, 2464, 2464, - 2464, 2464, 1085, 1085, 1085, 2464, 1085, 1085, - 1085, 1085, 2464, 2464, 2464, 1085, 2464, 2464, - 2464, 1085, 1085, 1085, 2465, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 2464, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 2464, 1085, - 1085, 1085, 1085, 2464, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 2464, 1085, 1085, 1085, 1085, 2464, 2464, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 77, 2465, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 2464, 2464, - 2464, 1085, 1085, 1085, 2464, 2464, 2464, 2464, - 2464, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 77, - 77, 77, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 2464, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 2464, 2464, 2464, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 2464, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 77, 77, 1085, 77, 77, - 77, 1085, 1085, 1085, 1085, 77, 77, 77, - 1085, 1085, 77, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 77, 1085, 77, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 77, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 77, 77, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 77, 77, 77, 1085, 1085, 1085, 77, 77, - 77, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 77, 77, 77, 77, 77, 77, 77, - 77, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 0, 0, 0, 0, 0, 0, 0, - 0, 77, 77, 77, 77, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 77, 77, 77, - 77, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 77, 77, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 2464, 2464, 2464, 2464, 2464, 2464, 2464, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 2464, - 1085, 0, 0, 0, 0, 0, 0, 0, - 0, 2464, 0, 0, 2464, 2464, 2464, 2464, - 2464, 2464, 2464, 1085, 1085, 2464, 2464, 2464, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, - 1085, 1085, 1085, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1085, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 0, - 0, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, - 1160, 1160, 1160, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 6350, 6351, 6352, 6353, 6354, 4271, 6355, - 6356, 6357, 6358, 4272, 6359, 6360, 6361, 4273, - 6362, 6363, 6364, 6365, 6366, 6367, 6368, 6369, - 6370, 6371, 6372, 6373, 4331, 6374, 6375, 6376, - 6377, 6378, 6379, 6380, 6381, 6382, 4336, 4274, - 4275, 4337, 6383, 6384, 4082, 6385, 4276, 6386, - 6387, 6388, 6389, 6389, 6389, 6390, 6391, 6392, - 6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, - 6401, 6402, 6403, 6404, 6405, 6406, 6407, 6407, - 4339, 6408, 6409, 6410, 6411, 4278, 6412, 6413, - 6414, 4235, 6415, 6416, 6417, 6418, 6419, 6420, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 6295, 6296, 6297, 6298, 6299, 6300, 6301, + 6302, 6303, 6304, 6305, 6306, 6307, 6308, 6309, + 6310, 6311, 6312, 6313, 6314, 6315, 6316, 6317, + 6318, 6319, 6320, 6321, 6322, 6323, 6324, 6325, + 6326, 6327, 6328, 6329, 6330, 6331, 6332, 6333, + 6334, 6335, 6336, 6337, 6338, 6339, 6340, 6341, + 6342, 6343, 6344, 6345, 6346, 6347, 6348, 6349, + 6350, 6351, 6352, 6353, 6354, 6355, 6356, 6357, + 6358, 6359, 6360, 6361, 6362, 6363, 6364, 6365, + 6366, 6367, 6368, 6369, 6370, 6371, 6372, 6373, + 6374, 6375, 6376, 6377, 6378, 6379, 0, 6380, + 6381, 6382, 6383, 6384, 6385, 6386, 6387, 6388, + 6389, 6390, 6391, 6392, 6393, 6394, 6395, 6396, + 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, + 6405, 6406, 6407, 6408, 6409, 6410, 6411, 6412, + 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420, 6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436, - 6437, 6438, 6439, 6440, 6440, 6441, 6442, 6443, - 4078, 6444, 6445, 6446, 6447, 6448, 6449, 6450, - 6451, 4283, 6452, 6453, 6454, 6455, 6456, 6457, - 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, - 6466, 6467, 6468, 6469, 6470, 6471, 6472, 4024, - 6473, 6474, 6475, 6475, 6476, 6477, 6477, 6478, - 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, - 6487, 6488, 6489, 6490, 4284, 6491, 6492, 6493, - 6494, 4351, 6494, 6495, 4286, 6496, 6497, 6498, - 6499, 4287, 3997, 6500, 6501, 6502, 6503, 6504, - 6505, 6506, 6507, 6508, 6509, 6510, 6511, 6512, - 6513, 6514, 6515, 6516, 6517, 6518, 6519, 6520, - 6521, 4288, 6522, 6523, 6524, 6525, 6526, 6527, - 4290, 6528, 6529, 6530, 6531, 6532, 6533, 6534, - 6535, 4025, 4359, 6536, 6537, 6538, 6539, 6540, - 6541, 6542, 6543, 4291, 6544, 6545, 6546, 6547, - 4402, 6548, 6549, 6550, 6551, 6552, 6553, 6554, - 6555, 6556, 6557, 6558, 6559, 6560, 4095, 6561, - 6562, 6563, 6564, 6565, 6566, 6567, 6568, 6569, - 6570, 6571, 4292, 4182, 6572, 6573, 6574, 6575, - 6576, 6577, 6578, 6579, 4363, 6580, 6581, 6582, - 6583, 6584, 6585, 6586, 6587, 4364, 6588, 6589, - 6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, - 6598, 6599, 4366, 6600, 6601, 6602, 6603, 6604, - 6605, 6606, 6607, 6608, 6609, 6610, 6610, 6611, - 6612, 4368, 6613, 6614, 6615, 6616, 6617, 6618, - 6619, 4081, 6620, 6621, 6622, 6623, 6624, 6625, - 6626, 4374, 6627, 6628, 6629, 6630, 6631, 6632, - 6632, 4375, 4404, 6633, 6634, 6635, 6636, 6637, - 4043, 4377, 6638, 6639, 4303, 6640, 6641, 4257, - 6642, 6643, 4307, 6644, 6645, 6646, 6647, 6647, - 6648, 6649, 6650, 6651, 6652, 6653, 6654, 6655, - 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, - 6664, 6665, 6666, 6667, 6668, 6669, 6670, 6671, - 6672, 6673, 6674, 4313, 6675, 6676, 6677, 6678, - 6679, 6680, 6681, 6682, 6683, 6684, 6685, 6686, - 6687, 6688, 6689, 6690, 6476, 6691, 6692, 6693, + 6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, + 6445, 6446, 6447, 6448, 6449, 6450, 0, 6451, + 6452, 0, 0, 6453, 0, 0, 6454, 6455, + 0, 0, 6456, 6457, 6458, 6459, 0, 6460, + 6461, 6462, 6463, 6464, 6465, 6466, 6467, 6468, + 6469, 6470, 6471, 0, 6472, 0, 6473, 6474, + 6475, 6476, 6477, 6478, 6479, 0, 6480, 6481, + 6482, 6483, 6484, 6485, 6486, 6487, 6488, 6489, + 6490, 6491, 6492, 6493, 6494, 6495, 6496, 6497, + 6498, 6499, 6500, 6501, 6502, 6503, 6504, 6505, + 6506, 6507, 6508, 6509, 6510, 6511, 6512, 6513, + 6514, 6515, 6516, 6517, 6518, 6519, 6520, 6521, + 6522, 6523, 6524, 6525, 6526, 6527, 6528, 6529, + 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, + 6538, 6539, 6540, 6541, 6542, 6543, 6544, 0, + 6545, 6546, 6547, 6548, 0, 0, 6549, 6550, + 6551, 6552, 6553, 6554, 6555, 6556, 0, 6557, + 6558, 6559, 6560, 6561, 6562, 6563, 0, 6564, + 6565, 6566, 6567, 6568, 6569, 6570, 6571, 6572, + 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, + 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, + 6589, 6590, 6591, 0, 6592, 6593, 6594, 6595, + 0, 6596, 6597, 6598, 6599, 6600, 0, 6601, + 0, 0, 0, 6602, 6603, 6604, 6605, 6606, + 6607, 6608, 0, 6609, 6610, 6611, 6612, 6613, + 6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, + 6622, 6623, 6624, 6625, 6626, 6627, 6628, 6629, + 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, + 6638, 6639, 6640, 6641, 6642, 6643, 6644, 6645, + 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653, + 6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, + 6662, 6663, 6664, 6665, 6666, 6667, 6668, 6669, + 6670, 6671, 6672, 6673, 6674, 6675, 6676, 6677, + 6678, 6679, 6680, 6681, 6682, 6683, 6684, 6685, + 6686, 6687, 6688, 6689, 6690, 6691, 6692, 6693, 6694, 6695, 6696, 6697, 6698, 6699, 6700, 6701, - 6702, 4099, 6703, 6704, 6705, 6706, 6707, 6708, - 4316, 6709, 6710, 6711, 6712, 6713, 6714, 6715, - 6716, 6717, 6718, 6719, 6720, 6721, 6722, 6723, - 6724, 6725, 6726, 6727, 6728, 4038, 6729, 6730, - 6731, 6732, 6733, 6734, 4384, 6735, 6736, 6737, - 6738, 6739, 6740, 6741, 6742, 6743, 6744, 6745, - 6746, 6747, 6748, 6749, 6750, 6751, 6752, 6753, - 6754, 4389, 4390, 6755, 6756, 6757, 6758, 6759, - 6760, 6761, 6762, 6763, 6764, 6765, 6766, 6767, - 4391, 6768, 6769, 6770, 6771, 6772, 6773, 6774, - 6775, 6776, 6777, 6778, 6779, 6780, 6781, 6782, - 6783, 6784, 6785, 6786, 6787, 6788, 6789, 6790, - 6791, 6792, 6793, 6794, 6795, 6796, 6797, 4397, - 4397, 6798, 6799, 6800, 6801, 6802, 6803, 6804, - 6805, 6806, 6807, 4398, 6808, 6809, 6810, 6811, - 6812, 6813, 6814, 6815, 6816, 6817, 6818, 6819, - 6820, 6821, 6822, 6823, 6824, 6825, 6826, 0, + 6702, 6703, 6704, 6705, 6706, 6707, 6708, 6709, + 6710, 6711, 6712, 6713, 6714, 6715, 6716, 6717, + 6718, 6719, 6720, 6721, 6722, 6723, 6724, 6725, + 6726, 6727, 6728, 6729, 6730, 6731, 6732, 6733, + 6734, 6735, 6736, 6737, 6738, 6739, 6740, 6741, + 6742, 6743, 6744, 6745, 6746, 6747, 6748, 6749, + 6750, 6751, 6752, 6753, 6754, 6755, 6756, 6757, + 6758, 6759, 6760, 6761, 6762, 6763, 6764, 6765, + 6766, 6767, 6768, 6769, 6770, 6771, 6772, 6773, + 6774, 6775, 6776, 6777, 6778, 6779, 6780, 6781, + 6782, 6783, 6784, 6785, 6786, 6787, 6788, 6789, + 6790, 6791, 6792, 6793, 6794, 6795, 6796, 6797, + 6798, 6799, 6800, 6801, 6802, 6803, 6804, 6805, + 6806, 6807, 6808, 6809, 6810, 6811, 6812, 6813, + 6814, 6815, 6816, 6817, 6818, 6819, 6820, 6821, + 6822, 6823, 6824, 6825, 6826, 6827, 6828, 6829, + 6830, 6831, 6832, 6833, 6834, 6835, 6836, 6837, + 6838, 6839, 6840, 6841, 6842, 6843, 6844, 6845, + 6846, 6847, 6848, 6849, 6850, 6851, 6852, 6853, + 6854, 6855, 6856, 6857, 6858, 6859, 6860, 6861, + 6862, 6863, 6864, 6865, 6866, 6867, 6868, 6869, + 6870, 6871, 6872, 6873, 6874, 6875, 6876, 6877, + 6878, 6879, 6880, 6881, 6882, 6883, 6884, 6885, + 6886, 6887, 6888, 6889, 6890, 6891, 6892, 6893, + 6894, 6895, 6896, 6897, 6898, 6899, 6900, 6901, + 6902, 6903, 6904, 6905, 6906, 6907, 6908, 6909, + 6910, 6911, 6912, 6913, 6914, 6915, 6916, 6917, + 6918, 6919, 6920, 6921, 6922, 6923, 6924, 6925, + 6926, 6927, 6928, 6929, 6930, 6931, 6932, 6933, + 6934, 6935, 6936, 6937, 6938, 6939, 6940, 6941, + 6942, 6943, 6944, 6945, 6946, 6947, 6948, 0, + 0, 6949, 6950, 6951, 6952, 6953, 6954, 6955, + 6956, 6957, 6958, 6959, 6960, 6961, 6962, 6963, + 6964, 6965, 6966, 6967, 6968, 6969, 6970, 6971, + 6972, 6973, 6974, 6975, 6976, 6977, 6978, 6979, + 6980, 6981, 6982, 6983, 6984, 6985, 6986, 6987, + 6988, 6989, 6990, 6991, 6992, 6993, 6994, 6995, + 6996, 6997, 6998, 6999, 7000, 7001, 7002, 7003, + 7004, 7005, 7006, 7007, 7008, 7009, 7010, 7011, + 7012, 7013, 7014, 7015, 7016, 7017, 7018, 7019, + 7020, 7021, 7022, 7023, 7024, 7025, 7026, 7027, + 7028, 7029, 7030, 7031, 6974, 7032, 7033, 7034, + 7035, 7036, 7037, 7038, 7039, 7040, 7041, 7042, + 7043, 7044, 7045, 7046, 7047, 7048, 7049, 7050, + 7051, 7052, 7053, 7054, 7055, 7056, 7000, 7057, + 7058, 7059, 7060, 7061, 7062, 7063, 7064, 7065, + 7066, 7067, 7068, 7069, 7070, 7071, 7072, 7073, + 7074, 7075, 7076, 7077, 7078, 7079, 7080, 7081, + 7082, 7083, 7084, 7085, 7086, 7087, 6974, 7088, + 7089, 7090, 7091, 7092, 7093, 7094, 7095, 7096, + 7097, 7098, 7099, 7100, 7101, 7102, 7103, 7104, + 7105, 7106, 7107, 7108, 7109, 7110, 7111, 7112, + 7000, 7113, 7114, 7115, 7116, 7117, 7118, 7119, + 7120, 7121, 7122, 7123, 7124, 7125, 7126, 7127, + 7128, 7129, 7130, 7131, 7132, 7133, 7134, 7135, + 7136, 7137, 7138, 7139, 7140, 7141, 7142, 7143, + 6974, 7144, 7145, 7146, 7147, 7148, 7149, 7150, + 7151, 7152, 7153, 7154, 7155, 7156, 7157, 7158, + 7159, 7160, 7161, 7162, 7163, 7164, 7165, 7166, + 7167, 7168, 7000, 7169, 7170, 7171, 7172, 7173, + 7174, 7175, 7176, 7177, 7178, 7179, 7180, 7181, + 7182, 7183, 7184, 7185, 7186, 7187, 7188, 7189, + 7190, 7191, 7192, 7193, 7194, 7195, 7196, 7197, + 7198, 7199, 6974, 7200, 7201, 7202, 7203, 7204, + 7205, 7206, 7207, 7208, 7209, 7210, 7211, 7212, + 7213, 7214, 7215, 7216, 7217, 7218, 7219, 7220, + 7221, 7222, 7223, 7224, 7000, 7225, 7226, 7227, + 7228, 7229, 7230, 7231, 7232, 0, 0, 7233, + 7234, 7235, 7236, 7237, 7238, 7239, 7240, 7241, + 7242, 7233, 7234, 7235, 7236, 7237, 7238, 7239, + 7240, 7241, 7242, 7233, 7234, 7235, 7236, 7237, + 7238, 7239, 7240, 7241, 7242, 7233, 7234, 7235, + 7236, 7237, 7238, 7239, 7240, 7241, 7242, 7233, + 7234, 7235, 7236, 7237, 7238, 7239, 7240, 7241, + 7242, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 914, 914, 914, 914, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 914, 914, + 914, 914, 914, 914, 914, 914, 1226, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 1226, 914, 914, + 1120, 1120, 1120, 1120, 1120, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1226, 1226, 1226, 1226, + 1226, 0, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 615, 615, 615, 615, 615, 615, 615, + 0, 615, 615, 615, 615, 615, 615, 615, + 615, 615, 615, 615, 615, 615, 615, 615, + 615, 615, 0, 0, 615, 615, 615, 615, + 615, 615, 615, 0, 615, 615, 0, 615, + 615, 615, 615, 615, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 0, 0, + 0, 615, 615, 615, 615, 615, 615, 615, + 596, 596, 596, 596, 596, 596, 596, 0, + 0, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 346, + 914, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -6492,23 +6451,9 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 2053, 2053, 2053, 2053, 2053, 2053, 2053, - 2053, 2053, 2053, 2053, 2053, 2053, 2053, 2053, - 2053, 2053, 2053, 2053, 2053, 2053, 2053, 2053, - 2053, 2053, 2053, 2053, 2053, 2053, 2053, 2053, - 2053, 2053, 2053, 2053, 2053, 2053, 2053, 2053, - 2053, 2053, 2053, 2053, 2053, 2053, 2053, 2053, - 2053, 2053, 2053, 2053, 2053, 2053, 2053, 2053, - 2053, 2053, 2053, 2053, 2053, 2053, 2053, 2053, - 2053, 2053, 2053, 2053, 2053, 2053, 2053, 2053, - 2053, 2053, 2053, 2053, 2053, 2053, 2053, 2053, - 2053, 2053, 2053, 2053, 2053, 2053, 2053, 2053, - 2053, 2053, 2053, 2053, 2053, 2053, 2053, 2053, - 2053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -6524,74 +6469,949 @@ const utf8proc_uint16_t utf8proc_stage2table[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 574, 574, 574, 574, 574, 574, 574, - 574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 615, 615, 615, + 615, 1247, 1247, 1247, 1247, 1247, 1247, 1247, + 1247, 1247, 1247, 0, 0, 0, 0, 0, + 11, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, + 1183, 1183, 1183, 1183, 1183, 1183, 0, 0, + 5999, 5999, 5999, 5999, 5999, 5999, 5999, 5999, + 5999, 628, 628, 628, 628, 628, 628, 628, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 7243, 7244, 7245, 7246, 7247, 7248, 7249, + 7250, 7251, 7252, 7253, 7254, 7255, 7256, 7257, + 7258, 7259, 7260, 7261, 7262, 7263, 7264, 7265, + 7266, 7267, 7268, 7269, 7270, 7271, 7272, 7273, + 7274, 7275, 7276, 7277, 7278, 7279, 7280, 7281, + 7282, 7283, 7284, 7285, 7286, 7287, 7288, 7289, + 7290, 7291, 7292, 7293, 7294, 7295, 7296, 7297, + 7298, 7299, 7300, 7301, 7302, 7303, 7304, 7305, + 7306, 7307, 7308, 7309, 7310, 615, 615, 615, + 615, 615, 615, 1248, 1228, 0, 0, 0, + 0, 1227, 1227, 1227, 1227, 1227, 1227, 1227, + 1227, 1227, 1227, 0, 0, 0, 0, 1180, + 1180, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 6104, 6104, 6104, 6104, 6104, 6104, + 6104, 6104, 6104, 6104, 6104, 6104, 6104, 6104, + 6104, 6104, 6104, 6104, 6104, 6104, 6104, 6104, + 6104, 6104, 6104, 6104, 6104, 6104, 6104, 6104, + 6104, 6104, 6104, 6104, 6104, 6104, 6104, 6104, + 6104, 6104, 6104, 6104, 6104, 6104, 6104, 6104, + 6104, 6104, 6104, 6104, 6104, 6104, 6104, 6104, + 6104, 6104, 6104, 6104, 6104, 1223, 6104, 6104, + 6104, 1186, 6104, 6104, 6104, 6104, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 6104, 6104, 6104, 6104, 6104, 6104, + 6104, 6104, 6104, 6104, 6104, 6104, 6104, 6104, + 6104, 6104, 6104, 6104, 6104, 6104, 6104, 6104, + 6104, 6104, 6104, 6104, 6104, 6104, 6104, 6104, + 6104, 6104, 6104, 6104, 6104, 6104, 6104, 6104, + 6104, 6104, 6104, 6104, 6104, 6104, 6104, 1223, + 6104, 6104, 6104, 6104, 6104, 6104, 6104, 6104, + 6104, 6104, 6104, 6104, 6104, 6104, 6104, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 7311, 7312, 7313, 7314, 0, 7315, 7316, + 7317, 7318, 7319, 7320, 7321, 7322, 7323, 7324, + 7325, 7326, 7327, 7328, 7329, 7330, 7331, 7332, + 7333, 7334, 7335, 7336, 7337, 7338, 7339, 7340, + 7341, 0, 7312, 7313, 0, 7342, 0, 0, + 7317, 0, 7319, 7320, 7321, 7322, 7323, 7324, + 7325, 7326, 7327, 7328, 0, 7330, 7331, 7332, + 7333, 0, 7335, 0, 7337, 0, 0, 0, + 0, 0, 0, 7313, 0, 0, 0, 0, + 7317, 0, 7319, 0, 7321, 0, 7323, 7324, + 7325, 0, 7327, 7328, 0, 7330, 0, 0, + 7333, 0, 7335, 0, 7337, 0, 7339, 0, + 7341, 0, 7312, 7313, 0, 7342, 0, 0, + 7317, 7318, 7319, 7320, 0, 7322, 7323, 7324, + 7325, 7326, 7327, 7328, 0, 7330, 7331, 7332, + 7333, 0, 7335, 7336, 7337, 7338, 0, 7340, + 0, 7311, 7312, 7313, 7314, 7342, 7315, 7316, + 7317, 7318, 7319, 0, 7321, 7322, 7323, 7324, + 7325, 7326, 7327, 7328, 7329, 7330, 7331, 7332, + 7333, 7334, 7335, 7336, 7337, 0, 0, 0, + 0, 0, 7312, 7313, 7314, 0, 7315, 7316, + 7317, 7318, 7319, 0, 7321, 7322, 7323, 7324, + 7325, 7326, 7327, 7328, 7329, 7330, 7331, 7332, + 7333, 7334, 7335, 7336, 7337, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 75, 75, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 79, 79, 79, 79, 2575, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 0, 0, 0, + 0, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 0, 0, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 0, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 2575, 0, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 7343, 7344, 7345, 7346, 7347, 7348, 7349, + 7350, 7351, 7352, 7353, 1286, 1286, 79, 79, + 79, 7354, 7355, 7356, 7357, 7358, 7359, 7360, + 7361, 7362, 7363, 7364, 7365, 7366, 7367, 7368, + 7369, 7370, 7371, 7372, 7373, 7374, 7375, 7376, + 7377, 7378, 7379, 7380, 7381, 7382, 7383, 7384, + 79, 7385, 7386, 7387, 7388, 7389, 7390, 7391, + 7392, 7393, 7394, 7395, 7396, 7397, 7398, 7399, + 7400, 7401, 7402, 7403, 7404, 7405, 7406, 7407, + 7408, 7409, 7410, 7411, 7412, 7413, 7414, 7415, + 7416, 7417, 7418, 7419, 7420, 7421, 7422, 7423, + 7424, 7425, 7426, 7427, 7428, 7429, 7430, 7431, + 7432, 7433, 7434, 7435, 7436, 7437, 7438, 7439, + 7440, 7441, 7442, 7443, 7444, 7445, 79, 79, + 79, 7446, 7447, 7448, 7449, 7450, 7451, 7452, + 7453, 7454, 7455, 7456, 7457, 7458, 7459, 7460, + 7461, 7462, 7463, 7464, 7465, 7466, 7467, 7468, + 7469, 7470, 7471, 914, 914, 914, 914, 7472, + 914, 7473, 7472, 7472, 7472, 7472, 7472, 7472, + 7472, 7472, 7472, 7472, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 914, 914, + 914, 914, 914, 914, 914, 914, 79, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 7474, + 7474, 7474, 7474, 7474, 7474, 7474, 7474, 7474, + 7474, 7474, 7474, 7474, 7474, 7474, 7474, 7474, + 7474, 7474, 7474, 7474, 7474, 7474, 7474, 7474, + 7474, 7475, 7476, 7477, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 7478, 7479, 7480, 7481, 7482, 7483, 7484, + 7485, 7486, 7487, 7488, 7489, 7490, 7491, 7492, + 7493, 7494, 7495, 7496, 7497, 7498, 7499, 7500, + 7501, 7502, 7503, 7504, 7505, 7506, 7507, 7508, + 7509, 7510, 7511, 7512, 7513, 7514, 7515, 7516, + 7517, 7518, 7519, 7520, 7521, 0, 0, 0, + 0, 7522, 7523, 7524, 7525, 7526, 7527, 7528, + 7529, 7530, 0, 0, 0, 0, 0, 0, + 0, 7531, 7532, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2575, 2575, 2575, 2575, 2575, 2575, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 79, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 79, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 79, 79, 79, 79, + 2575, 2575, 2575, 2575, 2575, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 79, 79, 79, 2575, 79, 79, + 79, 2575, 2575, 2575, 7533, 7533, 7533, 7533, + 7533, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 79, 2575, 79, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 79, 79, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 77, + 77, 77, 77, 77, 77, 77, 77, 79, + 79, 79, 79, 79, 2575, 2575, 2575, 2575, + 79, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 2575, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 2575, 2575, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 2575, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 79, + 79, 79, 79, 79, 79, 2575, 79, 79, + 79, 2575, 2575, 2575, 79, 79, 2575, 2575, + 2575, 0, 0, 0, 0, 0, 0, 0, + 0, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 2575, 2575, 0, 0, + 0, 79, 79, 79, 79, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 0, 0, + 0, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 79, 79, + 79, 79, 0, 0, 0, 0, 0, 0, + 0, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 0, 0, 0, + 0, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 0, 0, 0, 0, 0, 0, 0, + 0, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 0, 0, 0, 0, 0, + 0, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 0, 0, 0, 0, 0, 0, 0, + 0, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 0, + 0, 79, 79, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 77, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 77, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 0, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 0, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 79, 79, 79, 79, 79, 79, 79, + 79, 79, 79, 79, 79, 79, 79, 0, + 0, 2575, 2575, 2575, 2575, 2575, 0, 0, + 0, 2575, 2575, 2575, 0, 0, 0, 0, + 0, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 2575, 2575, 0, 0, 0, 0, 0, 0, + 0, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2575, 2575, 2575, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2575, 2575, 2575, 2575, 2575, 2575, 2575, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 0, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 7233, 7234, 7235, 7236, 7237, 7238, 7239, + 7240, 7241, 7242, 0, 0, 0, 0, 0, + 0, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 0, + 0, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 7534, 7535, 7536, 7537, 7538, 4631, 7539, + 7540, 7541, 7542, 4632, 7543, 7544, 7545, 4633, + 7546, 7547, 7548, 7549, 7550, 7551, 7552, 7553, + 7554, 7555, 7556, 7557, 4691, 7558, 7559, 7560, + 7561, 7562, 7563, 7564, 7565, 7566, 4696, 4634, + 4635, 4697, 7567, 7568, 4442, 7569, 4636, 7570, + 7571, 7572, 7573, 7573, 7573, 7574, 7575, 7576, + 7577, 7578, 7579, 7580, 7581, 7582, 7583, 7584, + 7585, 7586, 7587, 7588, 7589, 7590, 7591, 7591, + 4699, 7592, 7593, 7594, 7595, 4638, 7596, 7597, + 7598, 4595, 7599, 7600, 7601, 7602, 7603, 7604, + 7605, 7606, 7607, 7608, 7609, 7610, 7611, 7612, + 7613, 7614, 7615, 7616, 7617, 7618, 7619, 7620, + 7621, 7622, 7623, 7624, 7624, 7625, 7626, 7627, + 4438, 7628, 7629, 7630, 7631, 7632, 7633, 7634, + 7635, 4643, 7636, 7637, 7638, 7639, 7640, 7641, + 7642, 7643, 7644, 7645, 7646, 7647, 7648, 7649, + 7650, 7651, 7652, 7653, 7654, 7655, 7656, 4384, + 7657, 7658, 7659, 7659, 7660, 7661, 7661, 7662, + 7663, 7664, 7665, 7666, 7667, 7668, 7669, 7670, + 7671, 7672, 7673, 7674, 4644, 7675, 7676, 7677, + 7678, 4711, 7678, 7679, 4646, 7680, 7681, 7682, + 7683, 4647, 4357, 7684, 7685, 7686, 7687, 7688, + 7689, 7690, 7691, 7692, 7693, 7694, 7695, 7696, + 7697, 7698, 7699, 7700, 7701, 7702, 7703, 7704, + 7705, 4648, 7706, 7707, 7708, 7709, 7710, 7711, + 4650, 7712, 7713, 7714, 7715, 7716, 7717, 7718, + 7719, 4385, 4719, 7720, 7721, 7722, 7723, 7724, + 7725, 7726, 7727, 4651, 7728, 7729, 7730, 7731, + 4762, 7732, 7733, 7734, 7735, 7736, 7737, 7738, + 7739, 7740, 7741, 7742, 7743, 7744, 4455, 7745, + 7746, 7747, 7748, 7749, 7750, 7751, 7752, 7753, + 7754, 7755, 4652, 4542, 7756, 7757, 7758, 7759, + 7760, 7761, 7762, 7763, 4723, 7764, 7765, 7766, + 7767, 7768, 7769, 7770, 7771, 4724, 7772, 7773, + 7774, 7775, 7776, 7777, 7778, 7779, 7780, 7781, + 7782, 7783, 4726, 7784, 7785, 7786, 7787, 7788, + 7789, 7790, 7791, 7792, 7793, 7794, 7794, 7795, + 7796, 4728, 7797, 7798, 7799, 7800, 7801, 7802, + 7803, 4441, 7804, 7805, 7806, 7807, 7808, 7809, + 7810, 4734, 7811, 7812, 7813, 7814, 7815, 7816, + 7816, 4735, 4764, 7817, 7818, 7819, 7820, 7821, + 4403, 4737, 7822, 7823, 4663, 7824, 7825, 4617, + 7826, 7827, 4667, 7828, 7829, 7830, 7831, 7831, + 7832, 7833, 7834, 7835, 7836, 7837, 7838, 7839, + 7840, 7841, 7842, 7843, 7844, 7845, 7846, 7847, + 7848, 7849, 7850, 7851, 7852, 7853, 7854, 7855, + 7856, 7857, 7858, 4673, 7859, 7860, 7861, 7862, + 7863, 7864, 7865, 7866, 7867, 7868, 7869, 7870, + 7871, 7872, 7873, 7874, 7660, 7875, 7876, 7877, + 7878, 7879, 7880, 7881, 7882, 7883, 7884, 7885, + 7886, 4459, 7887, 7888, 7889, 7890, 7891, 7892, + 4676, 7893, 7894, 7895, 7896, 7897, 7898, 7899, + 7900, 7901, 7902, 7903, 7904, 7905, 7906, 7907, + 7908, 7909, 7910, 7911, 7912, 4398, 7913, 7914, + 7915, 7916, 7917, 7918, 4744, 7919, 7920, 7921, + 7922, 7923, 7924, 7925, 7926, 7927, 7928, 7929, + 7930, 7931, 7932, 7933, 7934, 7935, 7936, 7937, + 7938, 4749, 4750, 7939, 7940, 7941, 7942, 7943, + 7944, 7945, 7946, 7947, 7948, 7949, 7950, 7951, + 4751, 7952, 7953, 7954, 7955, 7956, 7957, 7958, + 7959, 7960, 7961, 7962, 7963, 7964, 7965, 7966, + 7967, 7968, 7969, 7970, 7971, 7972, 7973, 7974, + 7975, 7976, 7977, 7978, 7979, 7980, 7981, 4757, + 4757, 7982, 7983, 7984, 7985, 7986, 7987, 7988, + 7989, 7990, 7991, 4758, 7992, 7993, 7994, 7995, + 7996, 7997, 7998, 7999, 8000, 8001, 8002, 8003, + 8004, 8005, 8006, 8007, 8008, 8009, 8010, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, + 3221, 3221, 3221, 3221, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1534, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, + 649, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, + 4344, 4344, 4344, 4344, 4344, 4344, 4344, 0, 0, }; -const utf8proc_property_t utf8proc_properties[] = { - {0, 0, 0, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false,false,false,false, 0, 0, UTF8PROC_BOUNDCLASS_OTHER}, +static const utf8proc_property_t utf8proc_properties[] = { + {0, 0, 0, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false,false,false,false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_CC, 0, UTF8PROC_BIDI_CLASS_BN, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, {UTF8PROC_CATEGORY_CC, 0, UTF8PROC_BIDI_CLASS_BN, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, {UTF8PROC_CATEGORY_CC, 0, UTF8PROC_BIDI_CLASS_S, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, @@ -6640,49 +7460,50 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 25, UINT16_MAX, 25, UINT16_MAX, 1423, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PC, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1446, UINT16_MAX, 1446, 352, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1448, UINT16_MAX, 1448, 2818, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2795, UINT16_MAX, 2795, 401, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1449, UINT16_MAX, 1449, 743, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1450, UINT16_MAX, 1450, 414, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2820, UINT16_MAX, 2820, 2875, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1452, UINT16_MAX, 1452, 795, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1453, UINT16_MAX, 1453, 853, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1454, UINT16_MAX, 1454, 463, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1455, UINT16_MAX, 1455, 901, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1456, UINT16_MAX, 1456, 956, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1457, UINT16_MAX, 1457, 1043, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1458, UINT16_MAX, 1458, 2932, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1459, UINT16_MAX, 1459, 512, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1460, UINT16_MAX, 1460, 557, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1462, UINT16_MAX, 1462, 2994, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2809, UINT16_MAX, 2809, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1463, UINT16_MAX, 1463, 1130, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 3288, UINT16_MAX, 3288, 1215, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1464, UINT16_MAX, 1464, 1296, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1465, UINT16_MAX, 1465, 606, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2891, UINT16_MAX, 2891, 3082, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1466, UINT16_MAX, 1466, 1380, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2908, UINT16_MAX, 2908, 3131, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 3295, UINT16_MAX, 3295, 655, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2817, UINT16_MAX, 2817, 1466, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1491, UINT16_MAX, 1491, 352, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1493, UINT16_MAX, 1493, 2818, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2812, UINT16_MAX, 2812, 401, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1494, UINT16_MAX, 1494, 743, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1495, UINT16_MAX, 1495, 414, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2837, UINT16_MAX, 2837, 2875, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1497, UINT16_MAX, 1497, 795, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1498, UINT16_MAX, 1498, 853, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1499, UINT16_MAX, 1499, 463, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1500, UINT16_MAX, 1500, 901, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1501, UINT16_MAX, 1501, 956, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1502, UINT16_MAX, 1502, 1043, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1503, UINT16_MAX, 1503, 2932, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1504, UINT16_MAX, 1504, 512, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1505, UINT16_MAX, 1505, 557, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1507, UINT16_MAX, 1507, 2994, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2826, UINT16_MAX, 2826, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1508, UINT16_MAX, 1508, 1130, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 3305, UINT16_MAX, 3305, 1215, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1509, UINT16_MAX, 1509, 1296, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1510, UINT16_MAX, 1510, 606, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2908, UINT16_MAX, 2908, 3082, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1511, UINT16_MAX, 1511, 1380, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2925, UINT16_MAX, 2925, 3131, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 3312, UINT16_MAX, 3312, 655, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2834, UINT16_MAX, 2834, 1466, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_ZS, 0, UTF8PROC_BIDI_CLASS_CS, UTF8PROC_DECOMP_TYPE_NOBREAK, 26, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 8219, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 1621, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 0, UINT16_MAX, 8077, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PI, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_BN, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, + {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_BN, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 1, 0, UTF8PROC_BOUNDCLASS_CONTROL}, {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 8221, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ET, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ET, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 31, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 32, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 8225, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 35, 35, 7130, UINT16_MAX, 7130, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 35, 35, 7228, UINT16_MAX, 7228, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 8228, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 38, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 14, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 14, UINT16_MAX, 8078, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PF, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 16423, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 16426, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -6717,415 +7538,489 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8315, 125, UINT16_MAX, 125, UINT16_MAX, 1509, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8318, 128, UINT16_MAX, 128, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 129, UINT16_MAX, 129, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 8322, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8324, UINT16_MAX, 7977, UINT16_MAX, 7977, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8326, UINT16_MAX, 7978, UINT16_MAX, 7978, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8328, UINT16_MAX, 7979, UINT16_MAX, 7979, 3192, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8330, UINT16_MAX, 7980, UINT16_MAX, 7980, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8332, UINT16_MAX, 7981, UINT16_MAX, 7981, 1540, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8334, UINT16_MAX, 2819, UINT16_MAX, 2819, 1582, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1447, UINT16_MAX, 1447, 1558, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8336, UINT16_MAX, 7982, UINT16_MAX, 7982, 2855, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8338, UINT16_MAX, 7983, UINT16_MAX, 7983, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8340, UINT16_MAX, 7984, UINT16_MAX, 7984, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8342, UINT16_MAX, 7985, UINT16_MAX, 7985, 3406, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8344, UINT16_MAX, 7986, UINT16_MAX, 7986, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8346, UINT16_MAX, 7987, UINT16_MAX, 7987, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8348, UINT16_MAX, 7988, UINT16_MAX, 7988, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8350, UINT16_MAX, 7989, UINT16_MAX, 7989, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8352, UINT16_MAX, 7990, UINT16_MAX, 7990, 2881, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7991, UINT16_MAX, 7991, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8354, UINT16_MAX, 7992, UINT16_MAX, 7992, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8356, UINT16_MAX, 7993, UINT16_MAX, 7993, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8358, UINT16_MAX, 7994, UINT16_MAX, 7994, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8360, UINT16_MAX, 7995, UINT16_MAX, 7995, 3510, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8362, UINT16_MAX, 7996, UINT16_MAX, 7996, 1606, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8364, UINT16_MAX, 7997, UINT16_MAX, 7997, 1594, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7998, UINT16_MAX, 7998, 1588, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8366, UINT16_MAX, 7999, UINT16_MAX, 7999, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8368, UINT16_MAX, 8000, UINT16_MAX, 8000, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8370, UINT16_MAX, 8001, UINT16_MAX, 8001, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8372, UINT16_MAX, 8002, UINT16_MAX, 8002, 1523, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8374, UINT16_MAX, 8003, UINT16_MAX, 8003, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8004, UINT16_MAX, 8004, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8376, UINT16_MAX, 8005, UINT16_MAX, 8005, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 8322, 8079, UINT16_MAX, 8079, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8324, UINT16_MAX, 8080, UINT16_MAX, 8080, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8326, UINT16_MAX, 8081, UINT16_MAX, 8081, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8328, UINT16_MAX, 8082, UINT16_MAX, 8082, 3192, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8330, UINT16_MAX, 8083, UINT16_MAX, 8083, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8332, UINT16_MAX, 8084, UINT16_MAX, 8084, 1540, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8334, UINT16_MAX, 2836, UINT16_MAX, 2836, 1582, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1492, UINT16_MAX, 1492, 1558, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8336, UINT16_MAX, 8085, UINT16_MAX, 8085, 2855, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8338, UINT16_MAX, 8086, UINT16_MAX, 8086, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8340, UINT16_MAX, 8087, UINT16_MAX, 8087, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8342, UINT16_MAX, 8088, UINT16_MAX, 8088, 3406, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8344, UINT16_MAX, 8089, UINT16_MAX, 8089, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8346, UINT16_MAX, 8090, UINT16_MAX, 8090, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8348, UINT16_MAX, 8091, UINT16_MAX, 8091, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8350, UINT16_MAX, 8092, UINT16_MAX, 8092, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8352, UINT16_MAX, 8093, UINT16_MAX, 8093, 2881, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8094, UINT16_MAX, 8094, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8354, UINT16_MAX, 8095, UINT16_MAX, 8095, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8356, UINT16_MAX, 8096, UINT16_MAX, 8096, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8358, UINT16_MAX, 8097, UINT16_MAX, 8097, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8360, UINT16_MAX, 8098, UINT16_MAX, 8098, 3510, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8362, UINT16_MAX, 8099, UINT16_MAX, 8099, 1606, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8364, UINT16_MAX, 8100, UINT16_MAX, 8100, 1594, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8101, UINT16_MAX, 8101, 1588, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8366, UINT16_MAX, 8102, UINT16_MAX, 8102, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8368, UINT16_MAX, 8103, UINT16_MAX, 8103, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8370, UINT16_MAX, 8104, UINT16_MAX, 8104, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8372, UINT16_MAX, 8105, UINT16_MAX, 8105, 1523, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8374, UINT16_MAX, 8106, UINT16_MAX, 8106, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8107, UINT16_MAX, 8107, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8376, UINT16_MAX, 8108, UINT16_MAX, 8108, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8378, 188, UINT16_MAX, 188, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8381, UINT16_MAX, 8006, UINT16_MAX, 8006, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8381, UINT16_MAX, 8109, UINT16_MAX, 8109, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8383, 193, UINT16_MAX, 193, UINT16_MAX, 3259, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8386, UINT16_MAX, 8007, UINT16_MAX, 8007, 3308, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8386, UINT16_MAX, 8110, UINT16_MAX, 8110, 3308, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8388, 198, UINT16_MAX, 198, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8391, UINT16_MAX, 8008, UINT16_MAX, 8008, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8391, UINT16_MAX, 8111, UINT16_MAX, 8111, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8393, 203, UINT16_MAX, 203, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8396, UINT16_MAX, 8009, UINT16_MAX, 8009, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8396, UINT16_MAX, 8112, UINT16_MAX, 8112, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8398, 208, UINT16_MAX, 208, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8401, UINT16_MAX, 8010, UINT16_MAX, 8010, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8401, UINT16_MAX, 8113, UINT16_MAX, 8113, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8403, 213, UINT16_MAX, 213, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8406, UINT16_MAX, 8011, UINT16_MAX, 8011, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8406, UINT16_MAX, 8114, UINT16_MAX, 8114, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8408, 218, UINT16_MAX, 218, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8411, UINT16_MAX, 8012, UINT16_MAX, 8012, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8411, UINT16_MAX, 8115, UINT16_MAX, 8115, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8413, 223, UINT16_MAX, 223, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8416, UINT16_MAX, 8013, UINT16_MAX, 8013, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8416, UINT16_MAX, 8116, UINT16_MAX, 8116, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 226, UINT16_MAX, 226, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8014, UINT16_MAX, 8014, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8117, UINT16_MAX, 8117, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8419, 229, UINT16_MAX, 229, UINT16_MAX, 2858, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8422, UINT16_MAX, 8015, UINT16_MAX, 8015, 2862, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8422, UINT16_MAX, 8118, UINT16_MAX, 8118, 2862, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8424, 234, UINT16_MAX, 234, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8427, UINT16_MAX, 8016, UINT16_MAX, 8016, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8427, UINT16_MAX, 8119, UINT16_MAX, 8119, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8429, 239, UINT16_MAX, 239, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8432, UINT16_MAX, 8017, UINT16_MAX, 8017, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8432, UINT16_MAX, 8120, UINT16_MAX, 8120, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8434, 244, UINT16_MAX, 244, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8437, UINT16_MAX, 8018, UINT16_MAX, 8018, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8437, UINT16_MAX, 8121, UINT16_MAX, 8121, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8439, 249, UINT16_MAX, 249, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8442, UINT16_MAX, 8019, UINT16_MAX, 8019, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8442, UINT16_MAX, 8122, UINT16_MAX, 8122, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8444, 254, UINT16_MAX, 254, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8447, UINT16_MAX, 8020, UINT16_MAX, 8020, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8447, UINT16_MAX, 8123, UINT16_MAX, 8123, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8449, 259, UINT16_MAX, 259, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8452, UINT16_MAX, 8021, UINT16_MAX, 8021, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8452, UINT16_MAX, 8124, UINT16_MAX, 8124, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8454, 264, UINT16_MAX, 264, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8457, UINT16_MAX, 8022, UINT16_MAX, 8022, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8457, UINT16_MAX, 8125, UINT16_MAX, 8125, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8459, 269, UINT16_MAX, 269, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8462, UINT16_MAX, 8023, UINT16_MAX, 8023, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8462, UINT16_MAX, 8126, UINT16_MAX, 8126, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8464, 274, UINT16_MAX, 274, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8467, UINT16_MAX, 8024, UINT16_MAX, 8024, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8467, UINT16_MAX, 8127, UINT16_MAX, 8127, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 277, UINT16_MAX, 277, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 5138, UINT16_MAX, 5138, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 5167, UINT16_MAX, 5167, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8470, 280, UINT16_MAX, 280, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8473, UINT16_MAX, 8025, UINT16_MAX, 8025, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8473, UINT16_MAX, 8128, UINT16_MAX, 8128, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8475, 285, UINT16_MAX, 285, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8478, UINT16_MAX, 8026, UINT16_MAX, 8026, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8478, UINT16_MAX, 8129, UINT16_MAX, 8129, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8480, 290, UINT16_MAX, 290, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8483, UINT16_MAX, 8027, UINT16_MAX, 8027, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8483, UINT16_MAX, 8130, UINT16_MAX, 8130, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8485, 295, UINT16_MAX, 295, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8488, UINT16_MAX, 8028, UINT16_MAX, 8028, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8488, UINT16_MAX, 8131, UINT16_MAX, 8131, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8490, 8492, UINT16_MAX, 8, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1454, UINT16_MAX, 1454, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1499, UINT16_MAX, 1499, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8494, 304, UINT16_MAX, 304, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8497, UINT16_MAX, 8029, UINT16_MAX, 8029, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8497, UINT16_MAX, 8132, UINT16_MAX, 8132, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8499, 309, UINT16_MAX, 309, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8502, UINT16_MAX, 8030, UINT16_MAX, 8030, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8502, UINT16_MAX, 8133, UINT16_MAX, 8133, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8504, 314, UINT16_MAX, 314, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8507, UINT16_MAX, 8031, UINT16_MAX, 8031, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8507, UINT16_MAX, 8134, UINT16_MAX, 8134, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8135, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8509, 319, UINT16_MAX, 319, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8512, UINT16_MAX, 8032, UINT16_MAX, 8032, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8512, UINT16_MAX, 8136, UINT16_MAX, 8136, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8514, 324, UINT16_MAX, 324, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8517, UINT16_MAX, 8033, UINT16_MAX, 8033, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8517, UINT16_MAX, 8137, UINT16_MAX, 8137, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8519, 329, UINT16_MAX, 329, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8522, UINT16_MAX, 8034, UINT16_MAX, 8034, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8522, UINT16_MAX, 8138, UINT16_MAX, 8138, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8524, 334, UINT16_MAX, 334, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8527, UINT16_MAX, 8035, UINT16_MAX, 8035, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8527, UINT16_MAX, 8139, UINT16_MAX, 8139, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 337, UINT16_MAX, 337, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8036, UINT16_MAX, 8036, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8140, UINT16_MAX, 8140, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8530, 340, UINT16_MAX, 340, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8533, UINT16_MAX, 8037, UINT16_MAX, 8037, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8533, UINT16_MAX, 8141, UINT16_MAX, 8141, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8535, 345, UINT16_MAX, 345, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8538, UINT16_MAX, 8038, UINT16_MAX, 8038, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8538, UINT16_MAX, 8142, UINT16_MAX, 8142, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8540, 350, UINT16_MAX, 350, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8543, UINT16_MAX, 8039, UINT16_MAX, 8039, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8545, 8545, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8543, UINT16_MAX, 8143, UINT16_MAX, 8143, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8545, 8545, 8144, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 355, UINT16_MAX, 355, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8040, UINT16_MAX, 8040, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8145, UINT16_MAX, 8145, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8548, 358, UINT16_MAX, 358, UINT16_MAX, 2974, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8551, UINT16_MAX, 8041, UINT16_MAX, 8041, 2978, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8551, UINT16_MAX, 8146, UINT16_MAX, 8146, 2978, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8553, 363, UINT16_MAX, 363, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8556, UINT16_MAX, 8042, UINT16_MAX, 8042, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8556, UINT16_MAX, 8147, UINT16_MAX, 8147, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8558, 368, UINT16_MAX, 368, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8561, UINT16_MAX, 8043, UINT16_MAX, 8043, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8561, UINT16_MAX, 8148, UINT16_MAX, 8148, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 371, UINT16_MAX, 371, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8044, UINT16_MAX, 8044, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8149, UINT16_MAX, 8149, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8564, 374, UINT16_MAX, 374, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8567, UINT16_MAX, 8045, UINT16_MAX, 8045, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8567, UINT16_MAX, 8150, UINT16_MAX, 8150, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8569, 379, UINT16_MAX, 379, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8572, UINT16_MAX, 8046, UINT16_MAX, 8046, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8572, UINT16_MAX, 8151, UINT16_MAX, 8151, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8574, 384, UINT16_MAX, 384, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8577, UINT16_MAX, 8047, UINT16_MAX, 8047, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8577, UINT16_MAX, 8152, UINT16_MAX, 8152, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8579, 389, UINT16_MAX, 389, UINT16_MAX, 3012, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8582, UINT16_MAX, 8048, UINT16_MAX, 8048, 3015, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8582, UINT16_MAX, 8153, UINT16_MAX, 8153, 3015, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8584, 394, UINT16_MAX, 394, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8587, UINT16_MAX, 8049, UINT16_MAX, 8049, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8587, UINT16_MAX, 8154, UINT16_MAX, 8154, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8589, 399, UINT16_MAX, 399, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8592, UINT16_MAX, 8050, UINT16_MAX, 8050, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8592, UINT16_MAX, 8155, UINT16_MAX, 8155, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8594, 404, UINT16_MAX, 404, UINT16_MAX, 3018, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8597, UINT16_MAX, 8051, UINT16_MAX, 8051, 3021, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8597, UINT16_MAX, 8156, UINT16_MAX, 8156, 3021, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8599, 409, UINT16_MAX, 409, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8602, UINT16_MAX, 8052, UINT16_MAX, 8052, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8602, UINT16_MAX, 8157, UINT16_MAX, 8157, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8604, 414, UINT16_MAX, 414, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8607, UINT16_MAX, 8053, UINT16_MAX, 8053, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8607, UINT16_MAX, 8158, UINT16_MAX, 8158, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 417, UINT16_MAX, 417, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8054, UINT16_MAX, 8054, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8159, UINT16_MAX, 8159, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8610, 420, UINT16_MAX, 420, UINT16_MAX, 3030, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8613, UINT16_MAX, 8055, UINT16_MAX, 8055, 3033, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8613, UINT16_MAX, 8160, UINT16_MAX, 8160, 3033, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8615, 425, UINT16_MAX, 425, UINT16_MAX, 3036, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8618, UINT16_MAX, 8056, UINT16_MAX, 8056, 3039, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8618, UINT16_MAX, 8161, UINT16_MAX, 8161, 3039, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8620, 430, UINT16_MAX, 430, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8623, UINT16_MAX, 8057, UINT16_MAX, 8057, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8623, UINT16_MAX, 8162, UINT16_MAX, 8162, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8625, 435, UINT16_MAX, 435, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8628, UINT16_MAX, 8058, UINT16_MAX, 8058, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8628, UINT16_MAX, 8163, UINT16_MAX, 8163, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8630, 440, UINT16_MAX, 440, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8633, UINT16_MAX, 8059, UINT16_MAX, 8059, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8633, UINT16_MAX, 8164, UINT16_MAX, 8164, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8635, 445, UINT16_MAX, 445, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8638, UINT16_MAX, 8060, UINT16_MAX, 8060, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8638, UINT16_MAX, 8165, UINT16_MAX, 8165, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8640, 450, UINT16_MAX, 450, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8643, UINT16_MAX, 8061, UINT16_MAX, 8061, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8643, UINT16_MAX, 8166, UINT16_MAX, 8166, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8645, 455, UINT16_MAX, 455, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8648, UINT16_MAX, 8062, UINT16_MAX, 8062, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8648, UINT16_MAX, 8167, UINT16_MAX, 8167, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8650, 460, UINT16_MAX, 460, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8653, 463, UINT16_MAX, 463, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8656, UINT16_MAX, 8063, UINT16_MAX, 8063, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8656, UINT16_MAX, 8168, UINT16_MAX, 8168, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8658, 468, UINT16_MAX, 468, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8661, UINT16_MAX, 8064, UINT16_MAX, 8064, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8661, UINT16_MAX, 8169, UINT16_MAX, 8169, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8663, 473, UINT16_MAX, 473, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8666, UINT16_MAX, 8065, UINT16_MAX, 8065, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 18, 18, 3288, UINT16_MAX, 3288, 3140, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8066, UINT16_MAX, 8066, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8666, UINT16_MAX, 8170, UINT16_MAX, 8170, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 18, 18, 3305, UINT16_MAX, 3305, 3140, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8171, UINT16_MAX, 8171, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 476, UINT16_MAX, 476, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 477, UINT16_MAX, 477, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8067, UINT16_MAX, 8067, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8172, UINT16_MAX, 8172, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 478, UINT16_MAX, 478, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8068, UINT16_MAX, 8068, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8173, UINT16_MAX, 8173, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 479, UINT16_MAX, 479, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 480, UINT16_MAX, 480, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8069, UINT16_MAX, 8069, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8174, UINT16_MAX, 8174, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 481, UINT16_MAX, 481, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 482, UINT16_MAX, 482, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 483, UINT16_MAX, 483, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8070, UINT16_MAX, 8070, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8175, UINT16_MAX, 8175, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8176, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 484, UINT16_MAX, 484, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 485, UINT16_MAX, 485, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 486, UINT16_MAX, 486, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 487, UINT16_MAX, 487, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8071, UINT16_MAX, 8071, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8177, UINT16_MAX, 8177, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 488, UINT16_MAX, 488, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 489, UINT16_MAX, 489, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8072, UINT16_MAX, 8072, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8178, UINT16_MAX, 8178, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 490, UINT16_MAX, 490, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 491, UINT16_MAX, 491, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 492, UINT16_MAX, 492, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8073, UINT16_MAX, 8073, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8074, UINT16_MAX, 8074, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8179, UINT16_MAX, 8179, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8180, UINT16_MAX, 8180, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8181, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 493, UINT16_MAX, 493, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 494, UINT16_MAX, 494, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8075, UINT16_MAX, 8075, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8182, UINT16_MAX, 8182, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 495, UINT16_MAX, 495, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8688, 498, UINT16_MAX, 498, UINT16_MAX, 3565, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8691, UINT16_MAX, 8076, UINT16_MAX, 8076, 3614, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8691, UINT16_MAX, 8183, UINT16_MAX, 8183, 3614, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 501, UINT16_MAX, 501, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8077, UINT16_MAX, 8077, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8184, UINT16_MAX, 8184, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 502, UINT16_MAX, 502, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8078, UINT16_MAX, 8078, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8185, UINT16_MAX, 8185, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 503, UINT16_MAX, 503, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 504, UINT16_MAX, 504, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8079, UINT16_MAX, 8079, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8186, UINT16_MAX, 8186, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 505, UINT16_MAX, 505, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8187, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1537, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 506, UINT16_MAX, 506, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8080, UINT16_MAX, 8080, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8188, UINT16_MAX, 8188, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 507, UINT16_MAX, 507, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8700, 510, UINT16_MAX, 510, UINT16_MAX, 3663, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8703, UINT16_MAX, 8081, UINT16_MAX, 8081, 3712, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8703, UINT16_MAX, 8189, UINT16_MAX, 8189, 3712, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 513, UINT16_MAX, 513, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 514, UINT16_MAX, 514, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 515, UINT16_MAX, 515, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8082, UINT16_MAX, 8082, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8190, UINT16_MAX, 8190, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 516, UINT16_MAX, 516, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8083, UINT16_MAX, 8083, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8191, UINT16_MAX, 8191, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 517, UINT16_MAX, 517, UINT16_MAX, 1573, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 518, UINT16_MAX, 518, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8084, UINT16_MAX, 8084, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8192, UINT16_MAX, 8192, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8193, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 519, UINT16_MAX, 519, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8085, UINT16_MAX, 8085, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8086, UINT16_MAX, 8086, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8712, 522, UINT16_MAX, 522, 8087, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8715, 522, 8088, 522, 8087, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8717, UINT16_MAX, 8088, UINT16_MAX, 8087, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8719, 529, UINT16_MAX, 529, 8089, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8722, 529, 8090, 529, 8089, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8724, UINT16_MAX, 8090, UINT16_MAX, 8089, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8726, 536, UINT16_MAX, 536, 8091, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8729, 536, 8092, 536, 8091, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8731, UINT16_MAX, 8092, UINT16_MAX, 8091, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8194, UINT16_MAX, 8194, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8195, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8196, UINT16_MAX, 8196, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8712, 522, UINT16_MAX, 522, 8197, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8715, 522, 8198, 522, 8197, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8717, UINT16_MAX, 8198, UINT16_MAX, 8197, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8719, 529, UINT16_MAX, 529, 8199, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8722, 529, 8200, 529, 8199, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8724, UINT16_MAX, 8200, UINT16_MAX, 8199, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8726, 536, UINT16_MAX, 536, 8201, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8729, 536, 8202, 536, 8201, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8731, UINT16_MAX, 8202, UINT16_MAX, 8201, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8733, 543, UINT16_MAX, 543, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8736, UINT16_MAX, 8093, UINT16_MAX, 8093, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8736, UINT16_MAX, 8203, UINT16_MAX, 8203, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8738, 548, UINT16_MAX, 548, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8741, UINT16_MAX, 8094, UINT16_MAX, 8094, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8741, UINT16_MAX, 8204, UINT16_MAX, 8204, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8743, 553, UINT16_MAX, 553, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8746, UINT16_MAX, 8095, UINT16_MAX, 8095, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8746, UINT16_MAX, 8205, UINT16_MAX, 8205, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8748, 558, UINT16_MAX, 558, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8751, UINT16_MAX, 8096, UINT16_MAX, 8096, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8751, UINT16_MAX, 8206, UINT16_MAX, 8206, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8753, 563, UINT16_MAX, 563, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8756, UINT16_MAX, 8097, UINT16_MAX, 8097, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8756, UINT16_MAX, 8207, UINT16_MAX, 8207, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8758, 568, UINT16_MAX, 568, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8761, UINT16_MAX, 8098, UINT16_MAX, 8098, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8761, UINT16_MAX, 8208, UINT16_MAX, 8208, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8763, 573, UINT16_MAX, 573, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8766, UINT16_MAX, 8099, UINT16_MAX, 8099, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8766, UINT16_MAX, 8209, UINT16_MAX, 8209, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8768, 578, UINT16_MAX, 578, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8771, UINT16_MAX, 8100, UINT16_MAX, 8100, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1451, UINT16_MAX, 1451, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8771, UINT16_MAX, 8210, UINT16_MAX, 8210, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1496, UINT16_MAX, 1496, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8773, 583, UINT16_MAX, 583, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8776, UINT16_MAX, 8101, UINT16_MAX, 8101, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8776, UINT16_MAX, 8211, UINT16_MAX, 8211, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8778, 588, UINT16_MAX, 588, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8781, UINT16_MAX, 8102, UINT16_MAX, 8102, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8781, UINT16_MAX, 8212, UINT16_MAX, 8212, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8783, 593, UINT16_MAX, 593, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8786, UINT16_MAX, 8103, UINT16_MAX, 8103, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8786, UINT16_MAX, 8213, UINT16_MAX, 8213, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 596, UINT16_MAX, 596, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8104, UINT16_MAX, 8104, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8214, UINT16_MAX, 8214, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8789, 599, UINT16_MAX, 599, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8792, UINT16_MAX, 8105, UINT16_MAX, 8105, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8792, UINT16_MAX, 8215, UINT16_MAX, 8215, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8794, 604, UINT16_MAX, 604, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8797, UINT16_MAX, 8106, UINT16_MAX, 8106, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8797, UINT16_MAX, 8216, UINT16_MAX, 8216, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8799, 609, UINT16_MAX, 609, UINT16_MAX, 1567, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8802, UINT16_MAX, 8107, UINT16_MAX, 8107, 1570, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8802, UINT16_MAX, 8217, UINT16_MAX, 8217, 1570, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8804, 614, UINT16_MAX, 614, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8807, UINT16_MAX, 8108, UINT16_MAX, 8108, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8807, UINT16_MAX, 8218, UINT16_MAX, 8218, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8809, 619, UINT16_MAX, 619, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8812, UINT16_MAX, 8109, UINT16_MAX, 8109, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8814, 8814, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8816, 626, UINT16_MAX, 626, 8110, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8819, 626, 8111, 626, 8110, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8821, UINT16_MAX, 8111, UINT16_MAX, 8110, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8812, UINT16_MAX, 8219, UINT16_MAX, 8219, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8814, 8814, 8220, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8816, 626, UINT16_MAX, 626, 8221, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8819, 626, 8222, 626, 8221, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8821, UINT16_MAX, 8222, UINT16_MAX, 8221, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8823, 633, UINT16_MAX, 633, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8826, UINT16_MAX, 8112, UINT16_MAX, 8112, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8826, UINT16_MAX, 8223, UINT16_MAX, 8223, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 636, UINT16_MAX, 636, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 637, UINT16_MAX, 637, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8830, 640, UINT16_MAX, 640, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8833, UINT16_MAX, 8113, UINT16_MAX, 8113, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8833, UINT16_MAX, 8224, UINT16_MAX, 8224, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8835, 645, UINT16_MAX, 645, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8838, UINT16_MAX, 8114, UINT16_MAX, 8114, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8838, UINT16_MAX, 8225, UINT16_MAX, 8225, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8840, 650, UINT16_MAX, 650, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8843, UINT16_MAX, 8115, UINT16_MAX, 8115, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8843, UINT16_MAX, 8226, UINT16_MAX, 8226, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8845, 655, UINT16_MAX, 655, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8848, UINT16_MAX, 8116, UINT16_MAX, 8116, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8848, UINT16_MAX, 8227, UINT16_MAX, 8227, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8850, 660, UINT16_MAX, 660, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8853, UINT16_MAX, 8117, UINT16_MAX, 8117, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8853, UINT16_MAX, 8228, UINT16_MAX, 8228, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8855, 665, UINT16_MAX, 665, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8858, UINT16_MAX, 8118, UINT16_MAX, 8118, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8858, UINT16_MAX, 8229, UINT16_MAX, 8229, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8860, 670, UINT16_MAX, 670, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8863, UINT16_MAX, 8119, UINT16_MAX, 8119, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8863, UINT16_MAX, 8230, UINT16_MAX, 8230, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8865, 675, UINT16_MAX, 675, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8868, UINT16_MAX, 8120, UINT16_MAX, 8120, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8868, UINT16_MAX, 8231, UINT16_MAX, 8231, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8870, 680, UINT16_MAX, 680, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8873, UINT16_MAX, 8121, UINT16_MAX, 8121, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8873, UINT16_MAX, 8232, UINT16_MAX, 8232, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8875, 685, UINT16_MAX, 685, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8878, UINT16_MAX, 8122, UINT16_MAX, 8122, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8878, UINT16_MAX, 8233, UINT16_MAX, 8233, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8880, 690, UINT16_MAX, 690, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8883, UINT16_MAX, 8123, UINT16_MAX, 8123, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8883, UINT16_MAX, 8234, UINT16_MAX, 8234, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8885, 695, UINT16_MAX, 695, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8888, UINT16_MAX, 8124, UINT16_MAX, 8124, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8888, UINT16_MAX, 8235, UINT16_MAX, 8235, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8890, 700, UINT16_MAX, 700, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8893, UINT16_MAX, 8125, UINT16_MAX, 8125, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8893, UINT16_MAX, 8236, UINT16_MAX, 8236, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8895, 705, UINT16_MAX, 705, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8898, UINT16_MAX, 8126, UINT16_MAX, 8126, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8898, UINT16_MAX, 8237, UINT16_MAX, 8237, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8900, 710, UINT16_MAX, 710, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8903, UINT16_MAX, 8127, UINT16_MAX, 8127, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8903, UINT16_MAX, 8238, UINT16_MAX, 8238, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8905, 715, UINT16_MAX, 715, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8908, UINT16_MAX, 8128, UINT16_MAX, 8128, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8908, UINT16_MAX, 8239, UINT16_MAX, 8239, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8910, 720, UINT16_MAX, 720, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8913, UINT16_MAX, 8129, UINT16_MAX, 8129, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8913, UINT16_MAX, 8240, UINT16_MAX, 8240, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8915, 725, UINT16_MAX, 725, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8918, UINT16_MAX, 8130, UINT16_MAX, 8130, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8918, UINT16_MAX, 8241, UINT16_MAX, 8241, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 728, UINT16_MAX, 728, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8131, UINT16_MAX, 8131, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8242, UINT16_MAX, 8242, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8921, 731, UINT16_MAX, 731, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8924, UINT16_MAX, 8132, UINT16_MAX, 8132, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8924, UINT16_MAX, 8243, UINT16_MAX, 8243, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 734, UINT16_MAX, 734, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8244, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 735, UINT16_MAX, 735, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1461, UINT16_MAX, 1461, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1506, UINT16_MAX, 1506, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 736, UINT16_MAX, 736, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8133, UINT16_MAX, 8133, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8245, UINT16_MAX, 8245, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8929, 739, UINT16_MAX, 739, UINT16_MAX, 1543, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8932, UINT16_MAX, 8134, UINT16_MAX, 8134, 1546, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8932, UINT16_MAX, 8246, UINT16_MAX, 8246, 1546, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8934, 744, UINT16_MAX, 744, UINT16_MAX, 2866, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8937, UINT16_MAX, 8135, UINT16_MAX, 8135, 2869, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8937, UINT16_MAX, 8247, UINT16_MAX, 8247, 2869, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8939, 749, UINT16_MAX, 749, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8942, UINT16_MAX, 8136, UINT16_MAX, 8136, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8942, UINT16_MAX, 8248, UINT16_MAX, 8248, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8944, 754, UINT16_MAX, 754, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8947, UINT16_MAX, 8137, UINT16_MAX, 8137, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8947, UINT16_MAX, 8249, UINT16_MAX, 8249, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8949, 759, UINT16_MAX, 759, UINT16_MAX, 1615, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8952, UINT16_MAX, 8138, UINT16_MAX, 8138, 1618, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8952, UINT16_MAX, 8250, UINT16_MAX, 8250, 1618, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8954, 764, UINT16_MAX, 764, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8957, UINT16_MAX, 8139, UINT16_MAX, 8139, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8957, UINT16_MAX, 8251, UINT16_MAX, 8251, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 8959, 769, UINT16_MAX, 769, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8962, UINT16_MAX, 8140, UINT16_MAX, 8140, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 8962, UINT16_MAX, 8252, UINT16_MAX, 8252, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8253, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8254, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8255, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7218, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8256, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8257, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 772, UINT16_MAX, 772, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 773, UINT16_MAX, 773, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8141, UINT16_MAX, 8141, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8258, UINT16_MAX, 8258, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 774, UINT16_MAX, 774, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 775, UINT16_MAX, 775, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8142, UINT16_MAX, 8142, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8143, UINT16_MAX, 8143, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8259, UINT16_MAX, 8259, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8260, UINT16_MAX, 8260, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 776, UINT16_MAX, 776, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8144, UINT16_MAX, 8144, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8261, UINT16_MAX, 8261, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 777, UINT16_MAX, 777, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 778, UINT16_MAX, 778, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 779, UINT16_MAX, 779, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 780, UINT16_MAX, 780, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8145, UINT16_MAX, 8145, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8262, UINT16_MAX, 8262, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 781, UINT16_MAX, 781, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8146, UINT16_MAX, 8146, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8263, UINT16_MAX, 8263, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 782, UINT16_MAX, 782, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8147, UINT16_MAX, 8147, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8264, UINT16_MAX, 8264, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 783, UINT16_MAX, 783, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8148, UINT16_MAX, 8148, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8265, UINT16_MAX, 8265, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 784, UINT16_MAX, 784, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8149, UINT16_MAX, 8149, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8150, UINT16_MAX, 8150, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8151, UINT16_MAX, 8151, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8152, UINT16_MAX, 8152, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8153, UINT16_MAX, 8153, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8154, UINT16_MAX, 8154, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8155, UINT16_MAX, 8155, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8156, UINT16_MAX, 8156, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8157, UINT16_MAX, 8157, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2804, UINT16_MAX, 2804, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8158, UINT16_MAX, 8158, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8159, UINT16_MAX, 8159, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8160, UINT16_MAX, 8160, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8161, UINT16_MAX, 8161, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8162, UINT16_MAX, 8162, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8163, UINT16_MAX, 8163, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8164, UINT16_MAX, 8164, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8165, UINT16_MAX, 8165, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8166, UINT16_MAX, 8166, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8167, UINT16_MAX, 8167, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8168, UINT16_MAX, 8168, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8169, UINT16_MAX, 8169, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8170, UINT16_MAX, 8170, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8171, UINT16_MAX, 8171, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8172, UINT16_MAX, 8172, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8173, UINT16_MAX, 8173, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8174, UINT16_MAX, 8174, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8175, UINT16_MAX, 8175, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8176, UINT16_MAX, 8176, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8177, UINT16_MAX, 8177, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8178, UINT16_MAX, 8178, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8179, UINT16_MAX, 8179, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8180, UINT16_MAX, 8180, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8181, UINT16_MAX, 8181, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8182, UINT16_MAX, 8182, 1576, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8183, UINT16_MAX, 8183, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8184, UINT16_MAX, 8184, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 7, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 785, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 9, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 17, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 786, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 787, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 788, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 22, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 24, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8266, UINT16_MAX, 8266, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8267, UINT16_MAX, 8267, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8268, UINT16_MAX, 8268, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8269, UINT16_MAX, 8269, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8270, UINT16_MAX, 8270, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8271, UINT16_MAX, 8271, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1521, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8272, UINT16_MAX, 8272, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8273, UINT16_MAX, 8273, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8274, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8275, UINT16_MAX, 8275, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8276, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2821, UINT16_MAX, 2821, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8277, UINT16_MAX, 8277, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8278, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8279, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1522, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8280, UINT16_MAX, 8280, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8281, UINT16_MAX, 8281, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8282, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8283, UINT16_MAX, 8283, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8284, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8285, UINT16_MAX, 8285, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8286, UINT16_MAX, 8286, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8287, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8288, UINT16_MAX, 8288, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8289, UINT16_MAX, 8289, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8290, UINT16_MAX, 8290, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8291, UINT16_MAX, 8291, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8292, UINT16_MAX, 8292, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1528, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8293, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8294, UINT16_MAX, 8294, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1532, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8295, UINT16_MAX, 8295, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8296, UINT16_MAX, 8296, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1533, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1534, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8297, UINT16_MAX, 8297, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8298, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8299, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1535, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 786, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8300, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 787, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8301, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8302, UINT16_MAX, 8302, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8303, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8304, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8305, UINT16_MAX, 8305, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 788, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8306, UINT16_MAX, 8306, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8307, UINT16_MAX, 8307, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8308, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8309, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8310, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8311, UINT16_MAX, 8311, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8312, UINT16_MAX, 8312, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8313, UINT16_MAX, 8313, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8314, UINT16_MAX, 8314, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8315, UINT16_MAX, 8315, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8316, UINT16_MAX, 8316, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 5170, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8317, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8318, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1539, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1540, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8319, UINT16_MAX, 8319, 1576, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8320, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 801, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8321, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8322, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8323, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8324, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8325, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8326, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8327, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8328, UINT16_MAX, 8328, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8329, UINT16_MAX, 8329, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1530, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8330, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8331, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8332, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8333, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8334, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8335, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8336, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8337, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8338, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8339, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8340, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8341, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8342, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8343, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8344, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8345, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 7, UINT16_MAX, 8346, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 785, UINT16_MAX, 8347, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 9, UINT16_MAX, 8348, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 17, UINT16_MAX, 8349, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 786, UINT16_MAX, 8350, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 787, UINT16_MAX, 8351, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 788, UINT16_MAX, 8352, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 22, UINT16_MAX, 8353, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 24, UINT16_MAX, 8354, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8355, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8356, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 8981, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 8983, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 8985, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 8987, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 8989, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 8991, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 489, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 11, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 18, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 23, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 801, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 489, UINT16_MAX, 8357, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 11, UINT16_MAX, 8358, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 18, UINT16_MAX, 8359, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 23, UINT16_MAX, 8360, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 801, UINT16_MAX, 8361, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MN, 230, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32768, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 230, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32769, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 230, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32770, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, @@ -7164,21 +8059,21 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_MN, 230, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32817, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 230, UTF8PROC_BIDI_CLASS_NSM, 0, 804, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 230, UTF8PROC_BIDI_CLASS_NSM, 0, 8997, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_MN, 240, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, 807, 7127, UINT16_MAX, 7127, 32818, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, + {UTF8PROC_CATEGORY_MN, 240, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, 807, 7225, UINT16_MAX, 7225, 32818, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 233, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 234, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 808, UINT16_MAX, 808, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8185, UINT16_MAX, 8185, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8362, UINT16_MAX, 8362, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 809, UINT16_MAX, 809, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8186, UINT16_MAX, 8186, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8363, UINT16_MAX, 8363, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 810, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 811, UINT16_MAX, 811, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8187, UINT16_MAX, 8187, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 9004, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8188, UINT16_MAX, 8188, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8189, UINT16_MAX, 8189, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8190, UINT16_MAX, 8190, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8364, UINT16_MAX, 8364, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 9004, UINT16_MAX, 8365, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8366, UINT16_MAX, 8366, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8367, UINT16_MAX, 8367, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8368, UINT16_MAX, 8368, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, 0, 814, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 815, UINT16_MAX, 815, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 9008, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -7190,7 +8085,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9023, 833, UINT16_MAX, 833, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9026, 836, UINT16_MAX, 836, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9029, 839, UINT16_MAX, 839, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9032, 17226, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9032, 17226, 2659, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 845, UINT16_MAX, 845, UINT16_MAX, 1673, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 846, UINT16_MAX, 846, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 847, UINT16_MAX, 847, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -7217,85 +8112,86 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 866, UINT16_MAX, 866, UINT16_MAX, 1983, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9059, 869, UINT16_MAX, 869, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9062, 872, UINT16_MAX, 872, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9065, UINT16_MAX, 2583, UINT16_MAX, 2583, 4904, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9067, UINT16_MAX, 2616, UINT16_MAX, 2616, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9069, UINT16_MAX, 2621, UINT16_MAX, 2621, 4913, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9071, UINT16_MAX, 2658, UINT16_MAX, 2658, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9073, 17267, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7121, UINT16_MAX, 7121, 2088, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7122, UINT16_MAX, 7122, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2829, UINT16_MAX, 2829, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7123, UINT16_MAX, 7123, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7124, UINT16_MAX, 7124, 2141, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7125, UINT16_MAX, 7125, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7126, UINT16_MAX, 7126, 2192, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9065, UINT16_MAX, 2603, UINT16_MAX, 2603, 4904, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9067, UINT16_MAX, 2635, UINT16_MAX, 2635, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9069, UINT16_MAX, 2640, UINT16_MAX, 2640, 4913, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9071, UINT16_MAX, 2676, UINT16_MAX, 2676, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9073, 17267, 2693, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7219, UINT16_MAX, 7219, 2088, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7220, UINT16_MAX, 7220, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2846, UINT16_MAX, 2846, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7221, UINT16_MAX, 7221, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7222, UINT16_MAX, 7222, 2141, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7223, UINT16_MAX, 7223, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7224, UINT16_MAX, 7224, 2192, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 915, UINT16_MAX, 915, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7127, UINT16_MAX, 7127, 2245, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7128, UINT16_MAX, 7128, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7129, UINT16_MAX, 7129, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7130, UINT16_MAX, 7130, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7131, UINT16_MAX, 7131, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7132, UINT16_MAX, 7132, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7133, UINT16_MAX, 7133, 2401, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2830, UINT16_MAX, 2830, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7134, UINT16_MAX, 7134, 5023, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7225, UINT16_MAX, 7225, 2245, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7226, UINT16_MAX, 7226, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7227, UINT16_MAX, 7227, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7228, UINT16_MAX, 7228, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7229, UINT16_MAX, 7229, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7230, UINT16_MAX, 7230, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7231, UINT16_MAX, 7231, 2401, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2847, UINT16_MAX, 2847, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7232, UINT16_MAX, 7232, 5023, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 860, 917, UINT16_MAX, 917, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 917, UINT16_MAX, 917, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7136, UINT16_MAX, 7136, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7234, UINT16_MAX, 7234, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 897, UINT16_MAX, 897, 2349, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7137, UINT16_MAX, 7137, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7138, UINT16_MAX, 7138, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7139, UINT16_MAX, 7139, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2818, UINT16_MAX, 2818, 2452, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9078, UINT16_MAX, 8191, UINT16_MAX, 8191, 2036, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9080, UINT16_MAX, 8192, UINT16_MAX, 8192, 2297, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9082, UINT16_MAX, 2727, UINT16_MAX, 2727, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9084, UINT16_MAX, 2696, UINT16_MAX, 2696, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9086, UINT16_MAX, 2732, UINT16_MAX, 2732, 5033, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7235, UINT16_MAX, 7235, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7236, UINT16_MAX, 7236, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7237, UINT16_MAX, 7237, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 2835, UINT16_MAX, 2835, 2452, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9078, UINT16_MAX, 8369, UINT16_MAX, 8369, 2036, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9080, UINT16_MAX, 8370, UINT16_MAX, 8370, 2297, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9082, UINT16_MAX, 2745, UINT16_MAX, 2745, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9084, UINT16_MAX, 2714, UINT16_MAX, 2714, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9086, UINT16_MAX, 2750, UINT16_MAX, 2750, 5033, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 896, UINT16_MAX, 896, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 846, 846, 7122, UINT16_MAX, 7122, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 846, 846, 7220, UINT16_MAX, 7220, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 852, 852, 915, UINT16_MAX, 915, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 897, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2505, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9090, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9092, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 863, 863, 7137, UINT16_MAX, 7137, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 858, 858, 2830, UINT16_MAX, 2830, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8193, UINT16_MAX, 8193, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 897, UINT16_MAX, UINT16_MAX, 8371, UINT16_MAX, 2505, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9090, UINT16_MAX, UINT16_MAX, 8372, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9092, UINT16_MAX, UINT16_MAX, 8373, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 863, 863, 7235, UINT16_MAX, 7235, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 858, 858, 2847, UINT16_MAX, 2847, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8374, UINT16_MAX, 8374, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 902, UINT16_MAX, 902, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8194, UINT16_MAX, 8194, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8375, UINT16_MAX, 8375, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 903, UINT16_MAX, 903, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8195, UINT16_MAX, 8195, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8376, UINT16_MAX, 8376, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 904, UINT16_MAX, 904, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7148, UINT16_MAX, 7148, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 7246, UINT16_MAX, 7246, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 905, UINT16_MAX, 905, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8196, UINT16_MAX, 8196, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8377, UINT16_MAX, 8377, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 906, UINT16_MAX, 906, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8197, UINT16_MAX, 8197, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8378, UINT16_MAX, 8378, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 907, UINT16_MAX, 907, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8198, UINT16_MAX, 8198, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8379, UINT16_MAX, 8379, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 908, UINT16_MAX, 908, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8199, UINT16_MAX, 8199, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8380, UINT16_MAX, 8380, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 909, UINT16_MAX, 909, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8200, UINT16_MAX, 8200, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8381, UINT16_MAX, 8381, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 910, UINT16_MAX, 910, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8201, UINT16_MAX, 8201, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8382, UINT16_MAX, 8382, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 911, UINT16_MAX, 911, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8202, UINT16_MAX, 8202, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8383, UINT16_MAX, 8383, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 912, UINT16_MAX, 912, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8203, UINT16_MAX, 8203, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8384, UINT16_MAX, 8384, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 913, UINT16_MAX, 913, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8204, UINT16_MAX, 8204, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 853, 853, 7128, UINT16_MAX, 7128, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 859, 859, 7134, UINT16_MAX, 7134, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 914, UINT16_MAX, 8205, UINT16_MAX, 8205, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8206, UINT16_MAX, 8206, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8385, UINT16_MAX, 8385, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 853, 853, 7226, UINT16_MAX, 7226, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 859, 859, 7232, UINT16_MAX, 7232, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 914, UINT16_MAX, 8386, UINT16_MAX, 8386, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8387, UINT16_MAX, 8387, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 915, 852, UINT16_MAX, 852, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 849, 849, 7124, UINT16_MAX, 7124, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 849, 849, 7222, UINT16_MAX, 7222, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 916, UINT16_MAX, 916, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8207, UINT16_MAX, 8207, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8388, UINT16_MAX, 8388, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 917, 918, UINT16_MAX, 918, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 919, UINT16_MAX, 919, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8208, UINT16_MAX, 8208, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8389, UINT16_MAX, 8389, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8390, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 920, UINT16_MAX, 920, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 921, UINT16_MAX, 921, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 922, UINT16_MAX, 922, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -7347,256 +8243,256 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 984, UINT16_MAX, 984, UINT16_MAX, 2653, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 985, UINT16_MAX, 985, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 986, UINT16_MAX, 986, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8209, UINT16_MAX, 8209, 2622, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8210, UINT16_MAX, 8210, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8211, UINT16_MAX, 8211, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8212, UINT16_MAX, 8212, 2575, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8213, UINT16_MAX, 8213, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8214, UINT16_MAX, 8214, 2564, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8215, UINT16_MAX, 8215, 2608, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8216, UINT16_MAX, 8216, 2638, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8217, UINT16_MAX, 8217, 2553, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9179, UINT16_MAX, 8218, UINT16_MAX, 8218, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8219, UINT16_MAX, 8219, 2581, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8220, UINT16_MAX, 8220, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8221, UINT16_MAX, 8221, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8222, UINT16_MAX, 8222, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8223, UINT16_MAX, 8223, 2644, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8224, UINT16_MAX, 8224, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8225, UINT16_MAX, 8225, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8226, UINT16_MAX, 8226, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8227, UINT16_MAX, 8227, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8228, UINT16_MAX, 8228, 2584, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8229, UINT16_MAX, 8229, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8230, UINT16_MAX, 8230, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8231, UINT16_MAX, 8231, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8232, UINT16_MAX, 8232, 2662, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8233, UINT16_MAX, 8233, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8234, UINT16_MAX, 8234, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8235, UINT16_MAX, 8235, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8236, UINT16_MAX, 8236, 2668, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8237, UINT16_MAX, 8237, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8238, UINT16_MAX, 8238, 2656, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8239, UINT16_MAX, 8239, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8240, UINT16_MAX, 8240, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9181, UINT16_MAX, 8241, UINT16_MAX, 8241, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9183, UINT16_MAX, 8242, UINT16_MAX, 8242, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8243, UINT16_MAX, 8243, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9185, UINT16_MAX, 8244, UINT16_MAX, 8244, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8245, UINT16_MAX, 8245, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8246, UINT16_MAX, 8246, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8247, UINT16_MAX, 8247, 2578, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9187, UINT16_MAX, 8248, UINT16_MAX, 8248, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8249, UINT16_MAX, 8249, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8250, UINT16_MAX, 8250, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8251, UINT16_MAX, 8251, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8252, UINT16_MAX, 8252, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9189, UINT16_MAX, 8253, UINT16_MAX, 8253, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9191, UINT16_MAX, 8254, UINT16_MAX, 8254, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9193, UINT16_MAX, 8255, UINT16_MAX, 8255, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8256, UINT16_MAX, 8256, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8391, UINT16_MAX, 8391, 2622, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8392, UINT16_MAX, 8392, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8393, UINT16_MAX, 8393, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8394, UINT16_MAX, 8394, 2575, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8395, UINT16_MAX, 8395, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8396, UINT16_MAX, 8396, 2564, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8397, UINT16_MAX, 8397, 2608, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8398, UINT16_MAX, 8398, 2638, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8399, UINT16_MAX, 8399, 2553, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9179, UINT16_MAX, 8400, UINT16_MAX, 8400, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8401, UINT16_MAX, 8401, 2581, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8402, UINT16_MAX, 8402, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8403, UINT16_MAX, 8403, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8404, UINT16_MAX, 8404, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8405, UINT16_MAX, 8405, 2644, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8406, UINT16_MAX, 8406, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8407, UINT16_MAX, 8407, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8408, UINT16_MAX, 8408, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8409, UINT16_MAX, 8409, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8410, UINT16_MAX, 8410, 2584, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8411, UINT16_MAX, 8411, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8412, UINT16_MAX, 8412, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8413, UINT16_MAX, 8413, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8414, UINT16_MAX, 8414, 2662, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8415, UINT16_MAX, 8415, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8416, UINT16_MAX, 8416, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8417, UINT16_MAX, 8417, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8418, UINT16_MAX, 8418, 2668, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8419, UINT16_MAX, 8419, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8420, UINT16_MAX, 8420, 2656, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8421, UINT16_MAX, 8421, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8422, UINT16_MAX, 8422, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9181, UINT16_MAX, 8423, UINT16_MAX, 8423, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9183, UINT16_MAX, 8424, UINT16_MAX, 8424, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8425, UINT16_MAX, 8425, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9185, UINT16_MAX, 8426, UINT16_MAX, 8426, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8427, UINT16_MAX, 8427, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8428, UINT16_MAX, 8428, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8429, UINT16_MAX, 8429, 2578, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9187, UINT16_MAX, 8430, UINT16_MAX, 8430, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8431, UINT16_MAX, 8431, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8432, UINT16_MAX, 8432, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8433, UINT16_MAX, 8433, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8434, UINT16_MAX, 8434, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9189, UINT16_MAX, 8435, UINT16_MAX, 8435, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9191, UINT16_MAX, 8436, UINT16_MAX, 8436, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9193, UINT16_MAX, 8437, UINT16_MAX, 8437, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8438, UINT16_MAX, 8438, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1003, UINT16_MAX, 1003, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8257, UINT16_MAX, 8257, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8439, UINT16_MAX, 8439, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1004, UINT16_MAX, 1004, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8258, UINT16_MAX, 8258, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8440, UINT16_MAX, 8440, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1005, UINT16_MAX, 1005, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8259, UINT16_MAX, 8259, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8441, UINT16_MAX, 8441, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1006, UINT16_MAX, 1006, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8260, UINT16_MAX, 8260, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8442, UINT16_MAX, 8442, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1007, UINT16_MAX, 1007, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8261, UINT16_MAX, 8261, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8443, UINT16_MAX, 8443, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1008, UINT16_MAX, 1008, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8262, UINT16_MAX, 8262, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8444, UINT16_MAX, 8444, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1009, UINT16_MAX, 1009, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8263, UINT16_MAX, 8263, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8445, UINT16_MAX, 8445, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1010, UINT16_MAX, 1010, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8264, UINT16_MAX, 8264, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8446, UINT16_MAX, 8446, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1011, UINT16_MAX, 1011, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8265, UINT16_MAX, 8265, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8447, UINT16_MAX, 8447, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1012, UINT16_MAX, 1012, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8266, UINT16_MAX, 8266, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8448, UINT16_MAX, 8448, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1013, UINT16_MAX, 1013, UINT16_MAX, 2595, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8267, UINT16_MAX, 8267, 2598, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8449, UINT16_MAX, 8449, 2598, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9206, 1016, UINT16_MAX, 1016, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9209, UINT16_MAX, 8268, UINT16_MAX, 8268, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9209, UINT16_MAX, 8450, UINT16_MAX, 8450, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1019, UINT16_MAX, 1019, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8269, UINT16_MAX, 8269, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8451, UINT16_MAX, 8451, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1020, UINT16_MAX, 1020, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8270, UINT16_MAX, 8270, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8452, UINT16_MAX, 8452, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1021, UINT16_MAX, 1021, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8271, UINT16_MAX, 8271, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8453, UINT16_MAX, 8453, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1022, UINT16_MAX, 1022, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8272, UINT16_MAX, 8272, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8454, UINT16_MAX, 8454, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1023, UINT16_MAX, 1023, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8273, UINT16_MAX, 8273, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8455, UINT16_MAX, 8455, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_ME, 0, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1024, UINT16_MAX, 1024, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8274, UINT16_MAX, 8274, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8456, UINT16_MAX, 8456, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1025, UINT16_MAX, 1025, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8275, UINT16_MAX, 8275, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8457, UINT16_MAX, 8457, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1026, UINT16_MAX, 1026, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8276, UINT16_MAX, 8276, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8458, UINT16_MAX, 8458, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1027, UINT16_MAX, 1027, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8277, UINT16_MAX, 8277, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8459, UINT16_MAX, 8459, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1028, UINT16_MAX, 1028, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8278, UINT16_MAX, 8278, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8460, UINT16_MAX, 8460, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1029, UINT16_MAX, 1029, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8279, UINT16_MAX, 8279, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8461, UINT16_MAX, 8461, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1030, UINT16_MAX, 1030, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8280, UINT16_MAX, 8280, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8462, UINT16_MAX, 8462, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1031, UINT16_MAX, 1031, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8281, UINT16_MAX, 8281, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8463, UINT16_MAX, 8463, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1032, UINT16_MAX, 1032, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8282, UINT16_MAX, 8282, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8464, UINT16_MAX, 8464, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1033, UINT16_MAX, 1033, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8283, UINT16_MAX, 8283, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8465, UINT16_MAX, 8465, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1034, UINT16_MAX, 1034, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8284, UINT16_MAX, 8284, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8466, UINT16_MAX, 8466, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1035, UINT16_MAX, 1035, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8285, UINT16_MAX, 8285, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8467, UINT16_MAX, 8467, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1036, UINT16_MAX, 1036, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8286, UINT16_MAX, 8286, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8468, UINT16_MAX, 8468, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1037, UINT16_MAX, 1037, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8287, UINT16_MAX, 8287, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8469, UINT16_MAX, 8469, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1038, UINT16_MAX, 1038, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8288, UINT16_MAX, 8288, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8470, UINT16_MAX, 8470, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1039, UINT16_MAX, 1039, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8289, UINT16_MAX, 8289, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8471, UINT16_MAX, 8471, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1040, UINT16_MAX, 1040, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8290, UINT16_MAX, 8290, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8472, UINT16_MAX, 8472, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1041, UINT16_MAX, 1041, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8291, UINT16_MAX, 8291, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8473, UINT16_MAX, 8473, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1042, UINT16_MAX, 1042, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8292, UINT16_MAX, 8292, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8474, UINT16_MAX, 8474, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1043, UINT16_MAX, 1043, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8293, UINT16_MAX, 8293, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8475, UINT16_MAX, 8475, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1044, UINT16_MAX, 1044, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8294, UINT16_MAX, 8294, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8476, UINT16_MAX, 8476, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1045, UINT16_MAX, 1045, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8295, UINT16_MAX, 8295, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8477, UINT16_MAX, 8477, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1046, UINT16_MAX, 1046, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8296, UINT16_MAX, 8296, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8478, UINT16_MAX, 8478, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1047, UINT16_MAX, 1047, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8297, UINT16_MAX, 8297, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8479, UINT16_MAX, 8479, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1048, UINT16_MAX, 1048, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8298, UINT16_MAX, 8298, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8480, UINT16_MAX, 8480, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1049, UINT16_MAX, 1049, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8299, UINT16_MAX, 8299, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8481, UINT16_MAX, 8481, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1050, UINT16_MAX, 1050, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8300, UINT16_MAX, 8300, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8482, UINT16_MAX, 8482, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1051, UINT16_MAX, 1051, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9244, 1054, UINT16_MAX, 1054, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9247, UINT16_MAX, 8301, UINT16_MAX, 8301, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9247, UINT16_MAX, 8483, UINT16_MAX, 8483, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1057, UINT16_MAX, 1057, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8302, UINT16_MAX, 8302, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8484, UINT16_MAX, 8484, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1058, UINT16_MAX, 1058, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8303, UINT16_MAX, 8303, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8485, UINT16_MAX, 8485, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1059, UINT16_MAX, 1059, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8304, UINT16_MAX, 8304, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8486, UINT16_MAX, 8486, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1060, UINT16_MAX, 1060, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8305, UINT16_MAX, 8305, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8487, UINT16_MAX, 8487, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1061, UINT16_MAX, 1061, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8306, UINT16_MAX, 8306, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8488, UINT16_MAX, 8488, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1062, UINT16_MAX, 1062, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8307, UINT16_MAX, 8307, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8308, UINT16_MAX, 8308, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8489, UINT16_MAX, 8489, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8490, UINT16_MAX, 8490, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9255, 1065, UINT16_MAX, 1065, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9258, UINT16_MAX, 8309, UINT16_MAX, 8309, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9258, UINT16_MAX, 8491, UINT16_MAX, 8491, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9260, 1070, UINT16_MAX, 1070, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9263, UINT16_MAX, 8310, UINT16_MAX, 8310, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9263, UINT16_MAX, 8492, UINT16_MAX, 8492, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1073, UINT16_MAX, 1073, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8311, UINT16_MAX, 8311, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8493, UINT16_MAX, 8493, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9266, 1076, UINT16_MAX, 1076, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9269, UINT16_MAX, 8312, UINT16_MAX, 8312, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9269, UINT16_MAX, 8494, UINT16_MAX, 8494, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1079, UINT16_MAX, 1079, UINT16_MAX, 2629, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8313, UINT16_MAX, 8313, 2632, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8495, UINT16_MAX, 8495, 2632, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9272, 1082, UINT16_MAX, 1082, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9275, UINT16_MAX, 8314, UINT16_MAX, 8314, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9275, UINT16_MAX, 8496, UINT16_MAX, 8496, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9277, 1087, UINT16_MAX, 1087, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9280, UINT16_MAX, 8315, UINT16_MAX, 8315, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9280, UINT16_MAX, 8497, UINT16_MAX, 8497, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9282, 1092, UINT16_MAX, 1092, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9285, UINT16_MAX, 8316, UINT16_MAX, 8316, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9285, UINT16_MAX, 8498, UINT16_MAX, 8498, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1095, UINT16_MAX, 1095, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8317, UINT16_MAX, 8317, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8499, UINT16_MAX, 8499, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9288, 1098, UINT16_MAX, 1098, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9291, UINT16_MAX, 8318, UINT16_MAX, 8318, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9291, UINT16_MAX, 8500, UINT16_MAX, 8500, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9293, 1103, UINT16_MAX, 1103, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9296, UINT16_MAX, 8319, UINT16_MAX, 8319, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9296, UINT16_MAX, 8501, UINT16_MAX, 8501, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9298, 1108, UINT16_MAX, 1108, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9301, UINT16_MAX, 8320, UINT16_MAX, 8320, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9301, UINT16_MAX, 8502, UINT16_MAX, 8502, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1111, UINT16_MAX, 1111, UINT16_MAX, 2647, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8321, UINT16_MAX, 8321, 2650, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8503, UINT16_MAX, 8503, 2650, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9304, 1114, UINT16_MAX, 1114, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9307, UINT16_MAX, 8322, UINT16_MAX, 8322, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9307, UINT16_MAX, 8504, UINT16_MAX, 8504, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9309, 1119, UINT16_MAX, 1119, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9312, UINT16_MAX, 8323, UINT16_MAX, 8323, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9312, UINT16_MAX, 8505, UINT16_MAX, 8505, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9314, 1124, UINT16_MAX, 1124, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9317, UINT16_MAX, 8324, UINT16_MAX, 8324, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9317, UINT16_MAX, 8506, UINT16_MAX, 8506, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9319, 1129, UINT16_MAX, 1129, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9322, UINT16_MAX, 8325, UINT16_MAX, 8325, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9322, UINT16_MAX, 8507, UINT16_MAX, 8507, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9324, 1134, UINT16_MAX, 1134, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9327, UINT16_MAX, 8326, UINT16_MAX, 8326, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9327, UINT16_MAX, 8508, UINT16_MAX, 8508, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9329, 1139, UINT16_MAX, 1139, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9332, UINT16_MAX, 8327, UINT16_MAX, 8327, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9332, UINT16_MAX, 8509, UINT16_MAX, 8509, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1142, UINT16_MAX, 1142, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8328, UINT16_MAX, 8328, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8510, UINT16_MAX, 8510, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9335, 1145, UINT16_MAX, 1145, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9338, UINT16_MAX, 8329, UINT16_MAX, 8329, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9338, UINT16_MAX, 8511, UINT16_MAX, 8511, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1148, UINT16_MAX, 1148, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8330, UINT16_MAX, 8330, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8512, UINT16_MAX, 8512, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1149, UINT16_MAX, 1149, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8331, UINT16_MAX, 8331, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8513, UINT16_MAX, 8513, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1150, UINT16_MAX, 1150, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8332, UINT16_MAX, 8332, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8514, UINT16_MAX, 8514, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1151, UINT16_MAX, 1151, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8333, UINT16_MAX, 8333, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8515, UINT16_MAX, 8515, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1152, UINT16_MAX, 1152, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8334, UINT16_MAX, 8334, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8516, UINT16_MAX, 8516, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1153, UINT16_MAX, 1153, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8335, UINT16_MAX, 8335, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8517, UINT16_MAX, 8517, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1154, UINT16_MAX, 1154, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8336, UINT16_MAX, 8336, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8518, UINT16_MAX, 8518, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1155, UINT16_MAX, 1155, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8337, UINT16_MAX, 8337, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8519, UINT16_MAX, 8519, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1156, UINT16_MAX, 1156, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8338, UINT16_MAX, 8338, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8520, UINT16_MAX, 8520, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1157, UINT16_MAX, 1157, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8339, UINT16_MAX, 8339, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8521, UINT16_MAX, 8521, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1158, UINT16_MAX, 1158, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8340, UINT16_MAX, 8340, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8522, UINT16_MAX, 8522, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1159, UINT16_MAX, 1159, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8341, UINT16_MAX, 8341, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8523, UINT16_MAX, 8523, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1160, UINT16_MAX, 1160, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8342, UINT16_MAX, 8342, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8524, UINT16_MAX, 8524, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1161, UINT16_MAX, 1161, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8343, UINT16_MAX, 8343, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8525, UINT16_MAX, 8525, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1162, UINT16_MAX, 1162, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8344, UINT16_MAX, 8344, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8526, UINT16_MAX, 8526, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1163, UINT16_MAX, 1163, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8345, UINT16_MAX, 8345, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8527, UINT16_MAX, 8527, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1164, UINT16_MAX, 1164, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8346, UINT16_MAX, 8346, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8528, UINT16_MAX, 8528, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1165, UINT16_MAX, 1165, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8347, UINT16_MAX, 8347, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8529, UINT16_MAX, 8529, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1166, UINT16_MAX, 1166, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8348, UINT16_MAX, 8348, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8530, UINT16_MAX, 8530, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1167, UINT16_MAX, 1167, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8349, UINT16_MAX, 8349, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8531, UINT16_MAX, 8531, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1168, UINT16_MAX, 1168, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8350, UINT16_MAX, 8350, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8532, UINT16_MAX, 8532, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1169, UINT16_MAX, 1169, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8351, UINT16_MAX, 8351, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8533, UINT16_MAX, 8533, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1170, UINT16_MAX, 1170, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8352, UINT16_MAX, 8352, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8534, UINT16_MAX, 8534, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1171, UINT16_MAX, 1171, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8353, UINT16_MAX, 8353, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1172, UINT16_MAX, 1172, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8354, UINT16_MAX, 8354, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8535, UINT16_MAX, 8535, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1172, UINT16_MAX, 1172, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8536, UINT16_MAX, 8536, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1173, UINT16_MAX, 1173, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8355, UINT16_MAX, 8355, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8537, UINT16_MAX, 8537, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1174, UINT16_MAX, 1174, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8356, UINT16_MAX, 8356, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8538, UINT16_MAX, 8538, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1175, UINT16_MAX, 1175, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1176, UINT16_MAX, 1176, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1177, UINT16_MAX, 1177, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -7636,47 +8532,48 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1211, UINT16_MAX, 1211, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1212, UINT16_MAX, 1212, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8357, UINT16_MAX, 8357, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8358, UINT16_MAX, 8358, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8359, UINT16_MAX, 8359, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8360, UINT16_MAX, 8360, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8361, UINT16_MAX, 8361, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8362, UINT16_MAX, 8362, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8363, UINT16_MAX, 8363, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8364, UINT16_MAX, 8364, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8365, UINT16_MAX, 8365, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8366, UINT16_MAX, 8366, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8367, UINT16_MAX, 8367, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8368, UINT16_MAX, 8368, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8369, UINT16_MAX, 8369, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8370, UINT16_MAX, 8370, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8371, UINT16_MAX, 8371, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8372, UINT16_MAX, 8372, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8373, UINT16_MAX, 8373, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8374, UINT16_MAX, 8374, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8375, UINT16_MAX, 8375, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8376, UINT16_MAX, 8376, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8377, UINT16_MAX, 8377, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8378, UINT16_MAX, 8378, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8379, UINT16_MAX, 8379, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8380, UINT16_MAX, 8380, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8381, UINT16_MAX, 8381, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8382, UINT16_MAX, 8382, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8383, UINT16_MAX, 8383, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8384, UINT16_MAX, 8384, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8385, UINT16_MAX, 8385, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8386, UINT16_MAX, 8386, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8387, UINT16_MAX, 8387, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8388, UINT16_MAX, 8388, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8389, UINT16_MAX, 8389, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8390, UINT16_MAX, 8390, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8391, UINT16_MAX, 8391, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8392, UINT16_MAX, 8392, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8393, UINT16_MAX, 8393, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8394, UINT16_MAX, 8394, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 9405, 9405, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8539, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8540, UINT16_MAX, 8540, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8541, UINT16_MAX, 8541, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8542, UINT16_MAX, 8542, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8543, UINT16_MAX, 8543, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8544, UINT16_MAX, 8544, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8545, UINT16_MAX, 8545, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8546, UINT16_MAX, 8546, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8547, UINT16_MAX, 8547, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8548, UINT16_MAX, 8548, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8549, UINT16_MAX, 8549, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8550, UINT16_MAX, 8550, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8551, UINT16_MAX, 8551, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8552, UINT16_MAX, 8552, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8553, UINT16_MAX, 8553, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8554, UINT16_MAX, 8554, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8555, UINT16_MAX, 8555, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8556, UINT16_MAX, 8556, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8557, UINT16_MAX, 8557, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8558, UINT16_MAX, 8558, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8559, UINT16_MAX, 8559, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8560, UINT16_MAX, 8560, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8561, UINT16_MAX, 8561, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8562, UINT16_MAX, 8562, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8563, UINT16_MAX, 8563, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8564, UINT16_MAX, 8564, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8565, UINT16_MAX, 8565, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8566, UINT16_MAX, 8566, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8567, UINT16_MAX, 8567, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8568, UINT16_MAX, 8568, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8569, UINT16_MAX, 8569, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8570, UINT16_MAX, 8570, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8571, UINT16_MAX, 8571, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8572, UINT16_MAX, 8572, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8573, UINT16_MAX, 8573, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8574, UINT16_MAX, 8574, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8575, UINT16_MAX, 8575, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8576, UINT16_MAX, 8576, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8577, UINT16_MAX, 8577, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 9405, 9405, 8578, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8579, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MN, 222, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 228, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 10, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, @@ -7699,16 +8596,13 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_MN, 25, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_AN, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, true, 0, 0, UTF8PROC_BOUNDCLASS_PREPEND}, - {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_AN, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, true, 2, 0, UTF8PROC_BOUNDCLASS_PREPEND}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MN, 30, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 31, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 32, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, 0, 9407, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, 0, 9409, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -7717,7 +8611,6 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, 0, 9415, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2671, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2676, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2679, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MN, 27, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, @@ -7747,48 +8640,41 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2691, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9431, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2694, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9433, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2697, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9435, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2691, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9431, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2694, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9433, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2697, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9435, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MN, 7, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32788, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 9, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9437, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9439, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9441, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9443, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9445, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9447, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9449, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9451, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9437, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9439, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9441, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9443, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9445, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9447, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9449, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9451, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MN, 7, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32789, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2700, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 9453, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 9455, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32790, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9457, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9459, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9461, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_ET, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9463, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9465, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9467, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9469, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9471, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9473, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9457, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9459, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9461, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9463, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9465, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9467, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9469, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9471, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9473, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32792, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2704, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 9475, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, @@ -7796,10 +8682,10 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 9479, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32791, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32793, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9481, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9483, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2709, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9485, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9481, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9483, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2709, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9485, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32795, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2712, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2716, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, @@ -7811,7 +8697,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, 9493, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 84, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 91, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32796, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2722, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 9495, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32799, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, @@ -7828,7 +8714,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 9505, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 9507, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 9509, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_PREPEND}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_PREPEND}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32801, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 9, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32802, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32803, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, @@ -7841,22 +8727,19 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 9519, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MN, 103, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 107, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 9521, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MN, 118, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 122, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 9523, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 9525, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NOBREAK, 1335, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NOBREAK, 1335, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MN, 216, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9528, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9530, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9532, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9534, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9536, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9538, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9528, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9530, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9532, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9534, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9536, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9538, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MN, 129, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 130, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, 9540, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, @@ -7873,8 +8756,8 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, 9560, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, 9562, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, 9564, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2748, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9566, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2748, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9566, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32805, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1376, UINT16_MAX, 1376, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -7917,122 +8800,165 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1413, UINT16_MAX, 1413, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1414, UINT16_MAX, 1414, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1415, UINT16_MAX, 1415, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8580, UINT16_MAX, 1446, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8581, UINT16_MAX, 1447, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8582, UINT16_MAX, 1448, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8583, UINT16_MAX, 1449, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8584, UINT16_MAX, 1450, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8585, UINT16_MAX, 1451, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8586, UINT16_MAX, 1452, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8587, UINT16_MAX, 1453, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8588, UINT16_MAX, 1454, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8589, UINT16_MAX, 1455, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8590, UINT16_MAX, 1456, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8591, UINT16_MAX, 1457, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8592, UINT16_MAX, 1416, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8593, UINT16_MAX, 1458, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8594, UINT16_MAX, 1459, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8595, UINT16_MAX, 1460, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8596, UINT16_MAX, 1461, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8597, UINT16_MAX, 1462, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8598, UINT16_MAX, 1463, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8599, UINT16_MAX, 1464, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8600, UINT16_MAX, 1465, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8601, UINT16_MAX, 1466, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8602, UINT16_MAX, 1467, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8603, UINT16_MAX, 1468, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8604, UINT16_MAX, 1469, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8605, UINT16_MAX, 1470, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8606, UINT16_MAX, 1471, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8607, UINT16_MAX, 1472, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8608, UINT16_MAX, 1473, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8609, UINT16_MAX, 1474, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8610, UINT16_MAX, 1475, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8611, UINT16_MAX, 1476, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8612, UINT16_MAX, 1477, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8613, UINT16_MAX, 1478, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8614, UINT16_MAX, 1479, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8615, UINT16_MAX, 1480, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8616, UINT16_MAX, 1481, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8617, UINT16_MAX, 1482, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8618, UINT16_MAX, 1483, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8619, UINT16_MAX, 1484, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8620, UINT16_MAX, 1485, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8621, UINT16_MAX, 1486, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8622, UINT16_MAX, 1487, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1416, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8623, UINT16_MAX, 1488, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8624, UINT16_MAX, 1489, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8625, UINT16_MAX, 1490, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_L}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, false, 2, 0, UTF8PROC_BOUNDCLASS_L}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, false, 2, 0, UTF8PROC_BOUNDCLASS_V}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_V}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_T}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8395, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8396, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8397, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8398, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8399, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8400, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8401, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8402, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8403, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8404, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8405, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8406, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8407, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8408, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8409, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8410, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8411, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8412, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8413, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8414, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8415, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8416, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8417, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8418, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8419, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8420, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8421, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8422, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8423, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8424, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8425, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8426, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8427, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8428, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8429, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8430, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8431, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8432, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8433, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8434, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8435, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8436, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8437, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8438, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8439, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8440, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8441, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8442, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8443, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8444, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8445, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8446, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8447, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8448, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8449, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8450, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8451, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8452, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8453, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8454, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8455, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8456, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8457, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8458, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8459, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8460, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8461, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8462, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8463, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8464, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8465, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8466, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8467, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8468, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8469, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8470, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8471, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8472, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8473, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8474, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8475, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8476, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8477, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8478, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8479, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8480, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, false, 1, 0, UTF8PROC_BOUNDCLASS_V}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_V}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_T}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8626, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8627, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8628, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8629, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8630, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8631, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8632, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8633, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8634, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8635, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8636, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8637, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8638, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8639, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8640, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8641, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8642, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8643, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8644, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8645, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8646, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8647, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8648, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8649, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8650, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8651, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8652, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8653, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8654, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8655, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8656, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8657, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8658, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8659, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8660, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8661, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8662, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8663, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8664, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8665, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8666, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8667, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8668, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8669, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8670, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8671, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8672, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8673, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8674, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8675, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8676, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8677, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8678, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8679, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8680, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8681, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8682, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8683, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8684, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8685, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8686, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8687, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8688, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8689, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8690, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8691, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8692, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8693, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8694, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8695, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8696, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8697, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8698, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8699, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8700, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8701, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8702, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8703, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8704, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8705, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8706, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8707, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8708, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8709, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8710, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 8711, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1417, 1417, UINT16_MAX, 1417, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1418, 1418, UINT16_MAX, 1418, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1419, 1419, UINT16_MAX, 1419, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1420, 1420, UINT16_MAX, 1420, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1421, 1421, UINT16_MAX, 1421, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1422, 1422, UINT16_MAX, 1422, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ZS, 0, UTF8PROC_BIDI_CLASS_WS, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2751, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9615, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2754, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9617, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2757, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9619, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2760, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9621, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2763, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9623, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2766, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9625, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32806, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, + {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_BN, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2751, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9615, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2754, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9617, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2757, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9619, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2760, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9621, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2763, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9623, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2766, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 9625, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32806, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2769, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 9627, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2772, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, @@ -8044,618 +8970,758 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 2781, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 9635, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MC, 9, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 955, 8211, UINT16_MAX, 8211, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 957, 8213, UINT16_MAX, 8213, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 969, 8223, UINT16_MAX, 8223, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 972, 8226, UINT16_MAX, 8226, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 973, 8227, UINT16_MAX, 8227, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 981, 8235, UINT16_MAX, 8235, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1004, 8258, UINT16_MAX, 8258, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1445, 8481, UINT16_MAX, 8481, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1446, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1447, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1448, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1449, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1450, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1451, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1452, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1453, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1454, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1455, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1456, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1457, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1458, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1459, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1460, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1461, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1462, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1463, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1464, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1465, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1466, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1467, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1468, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1469, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 4, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 485, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 486, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1470, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 6, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 10, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 12, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 355, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 14, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 479, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1471, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1472, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 15, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 19, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 20, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1473, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 493, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 21, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1474, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 846, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 847, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 848, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 863, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 864, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 8, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 17, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 20, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 21, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 846, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 847, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 859, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 863, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 864, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 968, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8482, UINT16_MAX, 8482, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8483, UINT16_MAX, 8483, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1475, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 2, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1476, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 94, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 5, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1477, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1478, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1479, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 491, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 490, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1480, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1481, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1482, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1483, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1484, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1485, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1486, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1487, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 494, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1488, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1489, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 495, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1490, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1491, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 505, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1492, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 513, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1493, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 514, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 779, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 25, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1494, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1495, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 517, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 852, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 955, 8393, UINT16_MAX, 8393, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 957, 8395, UINT16_MAX, 8395, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 969, 8405, UINT16_MAX, 8405, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 972, 8408, UINT16_MAX, 8408, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 973, 8409, UINT16_MAX, 8409, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 981, 8417, UINT16_MAX, 8417, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1004, 8440, UINT16_MAX, 8440, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1445, 8712, UINT16_MAX, 8712, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1446, UINT16_MAX, 1446, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1447, UINT16_MAX, 1447, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1448, UINT16_MAX, 1448, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1449, UINT16_MAX, 1449, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1450, UINT16_MAX, 1450, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1451, UINT16_MAX, 1451, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1452, UINT16_MAX, 1452, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1453, UINT16_MAX, 1453, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1454, UINT16_MAX, 1454, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1455, UINT16_MAX, 1455, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1456, UINT16_MAX, 1456, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1457, UINT16_MAX, 1457, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1416, UINT16_MAX, 1416, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1458, UINT16_MAX, 1458, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1459, UINT16_MAX, 1459, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1460, UINT16_MAX, 1460, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1461, UINT16_MAX, 1461, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1462, UINT16_MAX, 1462, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1463, UINT16_MAX, 1463, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1464, UINT16_MAX, 1464, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1465, UINT16_MAX, 1465, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1466, UINT16_MAX, 1466, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1467, UINT16_MAX, 1467, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1468, UINT16_MAX, 1468, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1469, UINT16_MAX, 1469, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1470, UINT16_MAX, 1470, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1471, UINT16_MAX, 1471, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1472, UINT16_MAX, 1472, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1473, UINT16_MAX, 1473, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1474, UINT16_MAX, 1474, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1475, UINT16_MAX, 1475, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1476, UINT16_MAX, 1476, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1477, UINT16_MAX, 1477, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1478, UINT16_MAX, 1478, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1479, UINT16_MAX, 1479, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1480, UINT16_MAX, 1480, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1481, UINT16_MAX, 1481, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1482, UINT16_MAX, 1482, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1483, UINT16_MAX, 1483, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1484, UINT16_MAX, 1484, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1485, UINT16_MAX, 1485, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1486, UINT16_MAX, 1486, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1487, UINT16_MAX, 1487, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1488, UINT16_MAX, 1488, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1489, UINT16_MAX, 1489, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1490, UINT16_MAX, 1490, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8713, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8714, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1514, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8715, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8716, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8717, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8718, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8719, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8720, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8721, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8722, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8723, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8724, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8725, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8726, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8727, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8728, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8729, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8730, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8731, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8732, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8733, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1516, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1517, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8734, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8735, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8736, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8737, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1538, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1518, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8738, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8739, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8740, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8741, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8742, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8743, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8744, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1519, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8745, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8746, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8747, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8748, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8749, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8750, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1491, UINT16_MAX, 8751, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1492, UINT16_MAX, 8752, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1493, UINT16_MAX, 8753, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8754, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1494, UINT16_MAX, 8755, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1495, UINT16_MAX, 8756, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1496, UINT16_MAX, 8757, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1497, UINT16_MAX, 8758, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1498, UINT16_MAX, 8759, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1499, UINT16_MAX, 8760, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1500, UINT16_MAX, 8761, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1501, UINT16_MAX, 8762, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1502, UINT16_MAX, 8763, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1503, UINT16_MAX, 8764, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1504, UINT16_MAX, 8765, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8766, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1505, UINT16_MAX, 8767, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1506, UINT16_MAX, 8768, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1507, UINT16_MAX, 8769, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1508, UINT16_MAX, 8770, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1509, UINT16_MAX, 8771, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1510, UINT16_MAX, 8772, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1511, UINT16_MAX, 8773, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 0, UINT16_MAX, 8774, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1512, UINT16_MAX, 8775, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1513, UINT16_MAX, 8776, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1514, UINT16_MAX, 8777, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1, UINT16_MAX, 8778, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3, UINT16_MAX, 8779, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 4, UINT16_MAX, 8780, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 485, UINT16_MAX, 8781, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 486, UINT16_MAX, 8782, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1515, UINT16_MAX, 8783, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 6, UINT16_MAX, 8784, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8785, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 10, UINT16_MAX, 8786, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 12, UINT16_MAX, 8787, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 355, UINT16_MAX, 8788, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 14, UINT16_MAX, 8789, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 479, UINT16_MAX, 8790, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1516, UINT16_MAX, 8791, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1517, UINT16_MAX, 8792, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 15, UINT16_MAX, 8793, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 19, UINT16_MAX, 8794, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 20, UINT16_MAX, 8795, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1518, UINT16_MAX, 8796, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 493, UINT16_MAX, 8797, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 21, UINT16_MAX, 8798, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1519, UINT16_MAX, 8799, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 846, UINT16_MAX, 8800, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 847, UINT16_MAX, 8801, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 848, UINT16_MAX, 8802, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 863, UINT16_MAX, 8803, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 864, UINT16_MAX, 8804, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 8, UINT16_MAX, 8805, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 17, UINT16_MAX, 8806, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 20, UINT16_MAX, 8807, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 21, UINT16_MAX, 8808, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 846, UINT16_MAX, 8809, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 847, UINT16_MAX, 8810, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 859, UINT16_MAX, 8811, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 863, UINT16_MAX, 8812, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 864, UINT16_MAX, 8813, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8814, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8815, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8816, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8817, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8818, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8819, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8820, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8821, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8822, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8823, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8824, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8825, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8826, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 968, UINT16_MAX, 8827, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8828, UINT16_MAX, 8828, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8829, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1526, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8830, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8831, UINT16_MAX, 8831, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8832, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8833, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8834, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8835, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8836, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8837, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8838, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 1529, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8839, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8840, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8841, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8842, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8843, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8844, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8845, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8846, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8847, UINT16_MAX, 8847, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8848, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8849, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8850, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8851, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8852, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8853, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8854, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8855, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8856, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8857, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8858, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8859, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1520, UINT16_MAX, 8860, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 2, UINT16_MAX, 8861, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1521, UINT16_MAX, 8862, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 94, UINT16_MAX, 8863, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1515, UINT16_MAX, 8864, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 5, UINT16_MAX, 8865, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1522, UINT16_MAX, 8866, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1523, UINT16_MAX, 8867, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1524, UINT16_MAX, 8868, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 491, UINT16_MAX, 8869, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 490, UINT16_MAX, 8870, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1525, UINT16_MAX, 8871, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1526, UINT16_MAX, 8872, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1527, UINT16_MAX, 8873, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1528, UINT16_MAX, 8874, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1529, UINT16_MAX, 8875, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1530, UINT16_MAX, 8876, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1531, UINT16_MAX, 8877, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1532, UINT16_MAX, 8878, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 494, UINT16_MAX, 8879, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1533, UINT16_MAX, 8880, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1534, UINT16_MAX, 8881, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 495, UINT16_MAX, 8882, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1535, UINT16_MAX, 8883, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1536, UINT16_MAX, 8884, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 505, UINT16_MAX, 8885, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1537, UINT16_MAX, 8886, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 778, UINT16_MAX, 8887, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 513, UINT16_MAX, 8888, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1538, UINT16_MAX, 8889, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 514, UINT16_MAX, 8890, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 779, UINT16_MAX, 8891, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 25, UINT16_MAX, 8892, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1539, UINT16_MAX, 8893, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 1540, UINT16_MAX, 8894, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 517, UINT16_MAX, 8895, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 852, UINT16_MAX, 8896, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MN, 214, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9688, 1498, UINT16_MAX, 1498, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9691, UINT16_MAX, 8484, UINT16_MAX, 8484, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9693, 1503, UINT16_MAX, 1503, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9696, UINT16_MAX, 8485, UINT16_MAX, 8485, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9698, 1508, UINT16_MAX, 1508, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9701, UINT16_MAX, 8486, UINT16_MAX, 8486, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9703, 1513, UINT16_MAX, 1513, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9706, UINT16_MAX, 8487, UINT16_MAX, 8487, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9708, 1518, UINT16_MAX, 1518, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9711, UINT16_MAX, 8488, UINT16_MAX, 8488, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9713, 1523, UINT16_MAX, 1523, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9716, UINT16_MAX, 8489, UINT16_MAX, 8489, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9718, 1528, UINT16_MAX, 1528, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9721, UINT16_MAX, 8490, UINT16_MAX, 8490, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9723, 1533, UINT16_MAX, 1533, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9726, UINT16_MAX, 8491, UINT16_MAX, 8491, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9728, 1538, UINT16_MAX, 1538, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9731, UINT16_MAX, 8492, UINT16_MAX, 8492, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9733, 1543, UINT16_MAX, 1543, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9736, UINT16_MAX, 8493, UINT16_MAX, 8493, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9736, UINT16_MAX, 8897, UINT16_MAX, 8897, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9738, 1548, UINT16_MAX, 1548, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9741, UINT16_MAX, 8494, UINT16_MAX, 8494, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9741, UINT16_MAX, 8898, UINT16_MAX, 8898, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9743, 1553, UINT16_MAX, 1553, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9746, UINT16_MAX, 8495, UINT16_MAX, 8495, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9746, UINT16_MAX, 8899, UINT16_MAX, 8899, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9748, 1558, UINT16_MAX, 1558, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9751, UINT16_MAX, 8496, UINT16_MAX, 8496, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9751, UINT16_MAX, 8900, UINT16_MAX, 8900, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9753, 1563, UINT16_MAX, 1563, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9756, UINT16_MAX, 8497, UINT16_MAX, 8497, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9756, UINT16_MAX, 8901, UINT16_MAX, 8901, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9758, 1568, UINT16_MAX, 1568, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9761, UINT16_MAX, 8498, UINT16_MAX, 8498, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9761, UINT16_MAX, 8902, UINT16_MAX, 8902, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9763, 1573, UINT16_MAX, 1573, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9766, UINT16_MAX, 8499, UINT16_MAX, 8499, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9766, UINT16_MAX, 8903, UINT16_MAX, 8903, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9768, 1578, UINT16_MAX, 1578, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9771, UINT16_MAX, 8500, UINT16_MAX, 8500, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9771, UINT16_MAX, 8904, UINT16_MAX, 8904, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9773, 1583, UINT16_MAX, 1583, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9776, UINT16_MAX, 8501, UINT16_MAX, 8501, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9776, UINT16_MAX, 8905, UINT16_MAX, 8905, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9778, 1588, UINT16_MAX, 1588, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9781, UINT16_MAX, 8502, UINT16_MAX, 8502, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9781, UINT16_MAX, 8906, UINT16_MAX, 8906, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9783, 1593, UINT16_MAX, 1593, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9786, UINT16_MAX, 8503, UINT16_MAX, 8503, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9786, UINT16_MAX, 8907, UINT16_MAX, 8907, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9788, 1598, UINT16_MAX, 1598, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9791, UINT16_MAX, 8504, UINT16_MAX, 8504, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9791, UINT16_MAX, 8908, UINT16_MAX, 8908, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9793, 1603, UINT16_MAX, 1603, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9796, UINT16_MAX, 8505, UINT16_MAX, 8505, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9796, UINT16_MAX, 8909, UINT16_MAX, 8909, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9798, 1608, UINT16_MAX, 1608, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9801, UINT16_MAX, 8506, UINT16_MAX, 8506, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9801, UINT16_MAX, 8910, UINT16_MAX, 8910, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9803, 1613, UINT16_MAX, 1613, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9806, UINT16_MAX, 8507, UINT16_MAX, 8507, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9806, UINT16_MAX, 8911, UINT16_MAX, 8911, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9808, 1618, UINT16_MAX, 1618, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9811, UINT16_MAX, 8508, UINT16_MAX, 8508, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9811, UINT16_MAX, 8912, UINT16_MAX, 8912, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9813, 1623, UINT16_MAX, 1623, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9816, UINT16_MAX, 8509, UINT16_MAX, 8509, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9816, UINT16_MAX, 8913, UINT16_MAX, 8913, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9818, 1628, UINT16_MAX, 1628, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9821, UINT16_MAX, 8510, UINT16_MAX, 8510, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9823, 1633, UINT16_MAX, 1633, UINT16_MAX, 2884, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9826, UINT16_MAX, 8511, UINT16_MAX, 8511, 2887, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9821, UINT16_MAX, 8914, UINT16_MAX, 8914, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9823, 1633, UINT16_MAX, 1633, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9826, UINT16_MAX, 8915, UINT16_MAX, 8915, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9828, 1638, UINT16_MAX, 1638, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9831, UINT16_MAX, 8512, UINT16_MAX, 8512, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9831, UINT16_MAX, 8916, UINT16_MAX, 8916, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9833, 1643, UINT16_MAX, 1643, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9836, UINT16_MAX, 8513, UINT16_MAX, 8513, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9836, UINT16_MAX, 8917, UINT16_MAX, 8917, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9838, 1648, UINT16_MAX, 1648, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9841, UINT16_MAX, 8514, UINT16_MAX, 8514, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9841, UINT16_MAX, 8918, UINT16_MAX, 8918, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9843, 1653, UINT16_MAX, 1653, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9846, UINT16_MAX, 8515, UINT16_MAX, 8515, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9846, UINT16_MAX, 8919, UINT16_MAX, 8919, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9848, 1658, UINT16_MAX, 1658, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9851, UINT16_MAX, 8516, UINT16_MAX, 8516, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9851, UINT16_MAX, 8920, UINT16_MAX, 8920, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9853, 1663, UINT16_MAX, 1663, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9856, UINT16_MAX, 8517, UINT16_MAX, 8517, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9856, UINT16_MAX, 8921, UINT16_MAX, 8921, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9858, 1668, UINT16_MAX, 1668, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9861, UINT16_MAX, 8518, UINT16_MAX, 8518, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9861, UINT16_MAX, 8922, UINT16_MAX, 8922, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9863, 1673, UINT16_MAX, 1673, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9866, UINT16_MAX, 8519, UINT16_MAX, 8519, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9868, 1678, UINT16_MAX, 1678, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9871, UINT16_MAX, 8520, UINT16_MAX, 8520, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9866, UINT16_MAX, 8923, UINT16_MAX, 8923, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9868, 1678, UINT16_MAX, 1678, UINT16_MAX, 2884, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9871, UINT16_MAX, 8924, UINT16_MAX, 8924, 2887, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9873, 1683, UINT16_MAX, 1683, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9876, UINT16_MAX, 8521, UINT16_MAX, 8521, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9876, UINT16_MAX, 8925, UINT16_MAX, 8925, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9878, 1688, UINT16_MAX, 1688, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9881, UINT16_MAX, 8522, UINT16_MAX, 8522, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9881, UINT16_MAX, 8926, UINT16_MAX, 8926, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9883, 1693, UINT16_MAX, 1693, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9886, UINT16_MAX, 8523, UINT16_MAX, 8523, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9886, UINT16_MAX, 8927, UINT16_MAX, 8927, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9888, 1698, UINT16_MAX, 1698, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9891, UINT16_MAX, 8524, UINT16_MAX, 8524, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9891, UINT16_MAX, 8928, UINT16_MAX, 8928, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9893, 1703, UINT16_MAX, 1703, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9896, UINT16_MAX, 8525, UINT16_MAX, 8525, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9896, UINT16_MAX, 8929, UINT16_MAX, 8929, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9898, 1708, UINT16_MAX, 1708, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9901, UINT16_MAX, 8526, UINT16_MAX, 8526, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9901, UINT16_MAX, 8930, UINT16_MAX, 8930, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9903, 1713, UINT16_MAX, 1713, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9906, UINT16_MAX, 8527, UINT16_MAX, 8527, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9906, UINT16_MAX, 8931, UINT16_MAX, 8931, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9908, 1718, UINT16_MAX, 1718, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9911, UINT16_MAX, 8528, UINT16_MAX, 8528, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9913, 1723, UINT16_MAX, 1723, UINT16_MAX, 3006, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9916, UINT16_MAX, 8529, UINT16_MAX, 8529, 3009, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9911, UINT16_MAX, 8932, UINT16_MAX, 8932, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9913, 1723, UINT16_MAX, 1723, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9916, UINT16_MAX, 8933, UINT16_MAX, 8933, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9918, 1728, UINT16_MAX, 1728, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9921, UINT16_MAX, 8530, UINT16_MAX, 8530, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9921, UINT16_MAX, 8934, UINT16_MAX, 8934, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9923, 1733, UINT16_MAX, 1733, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9926, UINT16_MAX, 8531, UINT16_MAX, 8531, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9926, UINT16_MAX, 8935, UINT16_MAX, 8935, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9928, 1738, UINT16_MAX, 1738, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9931, UINT16_MAX, 8532, UINT16_MAX, 8532, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9933, 1743, UINT16_MAX, 1743, UINT16_MAX, 3024, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9936, UINT16_MAX, 8533, UINT16_MAX, 8533, 3027, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9931, UINT16_MAX, 8936, UINT16_MAX, 8936, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9933, 1743, UINT16_MAX, 1743, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9936, UINT16_MAX, 8937, UINT16_MAX, 8937, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9938, 1748, UINT16_MAX, 1748, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9941, UINT16_MAX, 8534, UINT16_MAX, 8534, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9941, UINT16_MAX, 8938, UINT16_MAX, 8938, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9943, 1753, UINT16_MAX, 1753, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9946, UINT16_MAX, 8535, UINT16_MAX, 8535, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9946, UINT16_MAX, 8939, UINT16_MAX, 8939, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9948, 1758, UINT16_MAX, 1758, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9951, UINT16_MAX, 8536, UINT16_MAX, 8536, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9951, UINT16_MAX, 8940, UINT16_MAX, 8940, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9953, 1763, UINT16_MAX, 1763, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9956, UINT16_MAX, 8537, UINT16_MAX, 8537, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9958, 1768, UINT16_MAX, 1768, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9961, UINT16_MAX, 8538, UINT16_MAX, 8538, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9956, UINT16_MAX, 8941, UINT16_MAX, 8941, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9958, 1768, UINT16_MAX, 1768, UINT16_MAX, 3006, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9961, UINT16_MAX, 8942, UINT16_MAX, 8942, 3009, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9963, 1773, UINT16_MAX, 1773, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9966, UINT16_MAX, 8539, UINT16_MAX, 8539, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9966, UINT16_MAX, 8943, UINT16_MAX, 8943, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9968, 1778, UINT16_MAX, 1778, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9971, UINT16_MAX, 8540, UINT16_MAX, 8540, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9971, UINT16_MAX, 8944, UINT16_MAX, 8944, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9973, 1783, UINT16_MAX, 1783, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9976, UINT16_MAX, 8541, UINT16_MAX, 8541, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9978, 1788, UINT16_MAX, 1788, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9981, UINT16_MAX, 8542, UINT16_MAX, 8542, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9976, UINT16_MAX, 8945, UINT16_MAX, 8945, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9978, 1788, UINT16_MAX, 1788, UINT16_MAX, 3024, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9981, UINT16_MAX, 8946, UINT16_MAX, 8946, 3027, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9983, 1793, UINT16_MAX, 1793, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9986, UINT16_MAX, 8543, UINT16_MAX, 8543, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9986, UINT16_MAX, 8947, UINT16_MAX, 8947, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9988, 1798, UINT16_MAX, 1798, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9991, UINT16_MAX, 8544, UINT16_MAX, 8544, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9991, UINT16_MAX, 8948, UINT16_MAX, 8948, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9993, 1803, UINT16_MAX, 1803, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9996, UINT16_MAX, 8545, UINT16_MAX, 8545, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 9996, UINT16_MAX, 8949, UINT16_MAX, 8949, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 9998, 1808, UINT16_MAX, 1808, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10001, UINT16_MAX, 8546, UINT16_MAX, 8546, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10001, UINT16_MAX, 8950, UINT16_MAX, 8950, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10003, 1813, UINT16_MAX, 1813, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10006, UINT16_MAX, 8547, UINT16_MAX, 8547, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10006, UINT16_MAX, 8951, UINT16_MAX, 8951, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10008, 1818, UINT16_MAX, 1818, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10011, UINT16_MAX, 8548, UINT16_MAX, 8548, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10011, UINT16_MAX, 8952, UINT16_MAX, 8952, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10013, 1823, UINT16_MAX, 1823, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10016, UINT16_MAX, 8549, UINT16_MAX, 8549, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10016, UINT16_MAX, 8953, UINT16_MAX, 8953, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10018, 1828, UINT16_MAX, 1828, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10021, UINT16_MAX, 8550, UINT16_MAX, 8550, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10021, UINT16_MAX, 8954, UINT16_MAX, 8954, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10023, 1833, UINT16_MAX, 1833, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10026, UINT16_MAX, 8551, UINT16_MAX, 8551, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10026, UINT16_MAX, 8955, UINT16_MAX, 8955, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10028, 1838, UINT16_MAX, 1838, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10031, UINT16_MAX, 8552, UINT16_MAX, 8552, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10031, UINT16_MAX, 8956, UINT16_MAX, 8956, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10033, 1843, UINT16_MAX, 1843, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10036, UINT16_MAX, 8553, UINT16_MAX, 8553, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10036, UINT16_MAX, 8957, UINT16_MAX, 8957, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10038, 1848, UINT16_MAX, 1848, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10041, UINT16_MAX, 8554, UINT16_MAX, 8554, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10041, UINT16_MAX, 8958, UINT16_MAX, 8958, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10043, 1853, UINT16_MAX, 1853, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10046, UINT16_MAX, 8555, UINT16_MAX, 8555, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10046, UINT16_MAX, 8959, UINT16_MAX, 8959, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10048, 1858, UINT16_MAX, 1858, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10051, UINT16_MAX, 8556, UINT16_MAX, 8556, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10051, UINT16_MAX, 8960, UINT16_MAX, 8960, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10053, 1863, UINT16_MAX, 1863, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10056, UINT16_MAX, 8557, UINT16_MAX, 8557, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10056, UINT16_MAX, 8961, UINT16_MAX, 8961, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10058, 1868, UINT16_MAX, 1868, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10061, UINT16_MAX, 8558, UINT16_MAX, 8558, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10063, 10063, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10065, 10065, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10067, 10067, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10069, 10069, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 10071, 10071, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10073, 1738, 8532, UINT16_MAX, 8532, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1883, UINT16_MAX, 1883, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10076, 1886, UINT16_MAX, 1886, UINT16_MAX, 3241, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10079, UINT16_MAX, 8559, UINT16_MAX, 8559, 3250, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10081, 1891, UINT16_MAX, 1891, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10084, UINT16_MAX, 8560, UINT16_MAX, 8560, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10086, 1896, UINT16_MAX, 1896, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10089, UINT16_MAX, 8561, UINT16_MAX, 8561, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10091, 1901, UINT16_MAX, 1901, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10094, UINT16_MAX, 8562, UINT16_MAX, 8562, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10096, 1906, UINT16_MAX, 1906, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10099, UINT16_MAX, 8563, UINT16_MAX, 8563, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10101, 1911, UINT16_MAX, 1911, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10104, UINT16_MAX, 8564, UINT16_MAX, 8564, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10106, 1916, UINT16_MAX, 1916, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10109, UINT16_MAX, 8565, UINT16_MAX, 8565, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10111, 1921, UINT16_MAX, 1921, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10114, UINT16_MAX, 8566, UINT16_MAX, 8566, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10116, 1926, UINT16_MAX, 1926, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10119, UINT16_MAX, 8567, UINT16_MAX, 8567, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10121, 1931, UINT16_MAX, 1931, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10124, UINT16_MAX, 8568, UINT16_MAX, 8568, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10126, 1936, UINT16_MAX, 1936, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10129, UINT16_MAX, 8569, UINT16_MAX, 8569, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10131, 1941, UINT16_MAX, 1941, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10134, UINT16_MAX, 8570, UINT16_MAX, 8570, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10136, 1946, UINT16_MAX, 1946, UINT16_MAX, 3455, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10139, UINT16_MAX, 8571, UINT16_MAX, 8571, 3458, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10141, 1951, UINT16_MAX, 1951, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10144, UINT16_MAX, 8572, UINT16_MAX, 8572, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10146, 1956, UINT16_MAX, 1956, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10149, UINT16_MAX, 8573, UINT16_MAX, 8573, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10151, 1961, UINT16_MAX, 1961, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10154, UINT16_MAX, 8574, UINT16_MAX, 8574, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10156, 1966, UINT16_MAX, 1966, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10159, UINT16_MAX, 8575, UINT16_MAX, 8575, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10161, 1971, UINT16_MAX, 1971, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10164, UINT16_MAX, 8576, UINT16_MAX, 8576, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10166, 1976, UINT16_MAX, 1976, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10169, UINT16_MAX, 8577, UINT16_MAX, 8577, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10171, 1981, UINT16_MAX, 1981, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10174, UINT16_MAX, 8578, UINT16_MAX, 8578, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10176, 1986, UINT16_MAX, 1986, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10179, UINT16_MAX, 8579, UINT16_MAX, 8579, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10181, 1991, UINT16_MAX, 1991, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10184, UINT16_MAX, 8580, UINT16_MAX, 8580, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10186, 1996, UINT16_MAX, 1996, UINT16_MAX, 3559, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10189, UINT16_MAX, 8581, UINT16_MAX, 8581, 3562, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10191, 2001, UINT16_MAX, 2001, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10194, UINT16_MAX, 8582, UINT16_MAX, 8582, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10196, 2006, UINT16_MAX, 2006, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10199, UINT16_MAX, 8583, UINT16_MAX, 8583, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10201, 2011, UINT16_MAX, 2011, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10204, UINT16_MAX, 8584, UINT16_MAX, 8584, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10206, 2016, UINT16_MAX, 2016, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10209, UINT16_MAX, 8585, UINT16_MAX, 8585, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10211, 2021, UINT16_MAX, 2021, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10214, UINT16_MAX, 8586, UINT16_MAX, 8586, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10216, 2026, UINT16_MAX, 2026, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10219, UINT16_MAX, 8587, UINT16_MAX, 8587, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10221, 2031, UINT16_MAX, 2031, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10224, UINT16_MAX, 8588, UINT16_MAX, 8588, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10226, 2036, UINT16_MAX, 2036, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10229, UINT16_MAX, 8589, UINT16_MAX, 8589, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10231, 2041, UINT16_MAX, 2041, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10234, UINT16_MAX, 8590, UINT16_MAX, 8590, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10236, 2046, UINT16_MAX, 2046, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10239, UINT16_MAX, 8591, UINT16_MAX, 8591, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10241, 2051, UINT16_MAX, 2051, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10244, UINT16_MAX, 8592, UINT16_MAX, 8592, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10246, 2056, UINT16_MAX, 2056, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10249, UINT16_MAX, 8593, UINT16_MAX, 8593, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10251, 2061, UINT16_MAX, 2061, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10254, UINT16_MAX, 8594, UINT16_MAX, 8594, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10256, 2066, UINT16_MAX, 2066, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10259, UINT16_MAX, 8595, UINT16_MAX, 8595, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10261, 2071, UINT16_MAX, 2071, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10264, UINT16_MAX, 8596, UINT16_MAX, 8596, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10266, 2076, UINT16_MAX, 2076, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10269, UINT16_MAX, 8597, UINT16_MAX, 8597, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10271, 2081, UINT16_MAX, 2081, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10274, UINT16_MAX, 8598, UINT16_MAX, 8598, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10276, 2086, UINT16_MAX, 2086, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10279, UINT16_MAX, 8599, UINT16_MAX, 8599, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10281, 2091, UINT16_MAX, 2091, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10284, UINT16_MAX, 8600, UINT16_MAX, 8600, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10286, 2096, UINT16_MAX, 2096, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10289, UINT16_MAX, 8601, UINT16_MAX, 8601, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10291, 2101, UINT16_MAX, 2101, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10294, UINT16_MAX, 8602, UINT16_MAX, 8602, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10296, 2106, UINT16_MAX, 2106, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10299, UINT16_MAX, 8603, UINT16_MAX, 8603, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 2109, UINT16_MAX, 2109, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8604, UINT16_MAX, 8604, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 2110, UINT16_MAX, 2110, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8605, UINT16_MAX, 8605, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 2111, UINT16_MAX, 2111, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8606, UINT16_MAX, 8606, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10304, UINT16_MAX, 8607, UINT16_MAX, 8607, 3761, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10306, UINT16_MAX, 8608, UINT16_MAX, 8608, 3814, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10308, UINT16_MAX, 8609, UINT16_MAX, 8609, 4793, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10310, UINT16_MAX, 8610, UINT16_MAX, 8610, 4796, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10312, UINT16_MAX, 8611, UINT16_MAX, 8611, 4799, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10314, UINT16_MAX, 8612, UINT16_MAX, 8612, 4802, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10316, UINT16_MAX, 8613, UINT16_MAX, 8613, 4805, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10318, UINT16_MAX, 8614, UINT16_MAX, 8614, 4808, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10320, 2130, UINT16_MAX, 2130, UINT16_MAX, 3867, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10323, 2133, UINT16_MAX, 2133, UINT16_MAX, 3920, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10326, 2136, UINT16_MAX, 2136, UINT16_MAX, 4811, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10329, 2139, UINT16_MAX, 2139, UINT16_MAX, 4814, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10332, 2142, UINT16_MAX, 2142, UINT16_MAX, 4817, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10335, 2145, UINT16_MAX, 2145, UINT16_MAX, 4820, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10338, 2148, UINT16_MAX, 2148, UINT16_MAX, 4823, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10341, 2151, UINT16_MAX, 2151, UINT16_MAX, 4826, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10344, UINT16_MAX, 8615, UINT16_MAX, 8615, 3973, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10346, UINT16_MAX, 8616, UINT16_MAX, 8616, 3977, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10348, UINT16_MAX, 8617, UINT16_MAX, 8617, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10350, UINT16_MAX, 8618, UINT16_MAX, 8618, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10352, UINT16_MAX, 8619, UINT16_MAX, 8619, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10354, UINT16_MAX, 8620, UINT16_MAX, 8620, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10356, 2166, UINT16_MAX, 2166, UINT16_MAX, 3981, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10359, 2169, UINT16_MAX, 2169, UINT16_MAX, 3985, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10362, 2172, UINT16_MAX, 2172, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10365, 2175, UINT16_MAX, 2175, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10368, 2178, UINT16_MAX, 2178, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10371, 2181, UINT16_MAX, 2181, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10374, UINT16_MAX, 8621, UINT16_MAX, 8621, 3989, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10376, UINT16_MAX, 8622, UINT16_MAX, 8622, 4042, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10378, UINT16_MAX, 8623, UINT16_MAX, 8623, 4829, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10380, UINT16_MAX, 8624, UINT16_MAX, 8624, 4832, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10382, UINT16_MAX, 8625, UINT16_MAX, 8625, 4835, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10384, UINT16_MAX, 8626, UINT16_MAX, 8626, 4838, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10386, UINT16_MAX, 8627, UINT16_MAX, 8627, 4841, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10388, UINT16_MAX, 8628, UINT16_MAX, 8628, 4844, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10390, 2200, UINT16_MAX, 2200, UINT16_MAX, 4095, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10393, 2203, UINT16_MAX, 2203, UINT16_MAX, 4148, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10396, 2206, UINT16_MAX, 2206, UINT16_MAX, 4847, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10399, 2209, UINT16_MAX, 2209, UINT16_MAX, 4850, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10402, 2212, UINT16_MAX, 2212, UINT16_MAX, 4853, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10405, 2215, UINT16_MAX, 2215, UINT16_MAX, 4856, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10408, 2218, UINT16_MAX, 2218, UINT16_MAX, 4859, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10411, 2221, UINT16_MAX, 2221, UINT16_MAX, 4862, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10414, UINT16_MAX, 8629, UINT16_MAX, 8629, 4201, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10416, UINT16_MAX, 8630, UINT16_MAX, 8630, 4253, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10418, UINT16_MAX, 8631, UINT16_MAX, 8631, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10420, UINT16_MAX, 8632, UINT16_MAX, 8632, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10422, UINT16_MAX, 8633, UINT16_MAX, 8633, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10424, UINT16_MAX, 8634, UINT16_MAX, 8634, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10426, UINT16_MAX, 8635, UINT16_MAX, 8635, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10428, UINT16_MAX, 8636, UINT16_MAX, 8636, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10430, 2240, UINT16_MAX, 2240, UINT16_MAX, 4305, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10433, 2243, UINT16_MAX, 2243, UINT16_MAX, 4357, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10436, 2246, UINT16_MAX, 2246, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10439, 2249, UINT16_MAX, 2249, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10442, 2252, UINT16_MAX, 2252, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10445, 2255, UINT16_MAX, 2255, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10448, 2258, UINT16_MAX, 2258, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10451, 2261, UINT16_MAX, 2261, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10454, UINT16_MAX, 8637, UINT16_MAX, 8637, 4409, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10456, UINT16_MAX, 8638, UINT16_MAX, 8638, 4413, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10458, UINT16_MAX, 8639, UINT16_MAX, 8639, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10460, UINT16_MAX, 8640, UINT16_MAX, 8640, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10462, UINT16_MAX, 8641, UINT16_MAX, 8641, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10464, UINT16_MAX, 8642, UINT16_MAX, 8642, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10466, 2276, UINT16_MAX, 2276, UINT16_MAX, 4417, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10469, 2279, UINT16_MAX, 2279, UINT16_MAX, 4421, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10472, 2282, UINT16_MAX, 2282, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10475, 2285, UINT16_MAX, 2285, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10478, 2288, UINT16_MAX, 2288, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10481, 2291, UINT16_MAX, 2291, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10484, 10484, UINT16_MAX, UINT16_MAX, UINT16_MAX, 4425, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10486, UINT16_MAX, 8643, UINT16_MAX, 8643, 4477, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10488, 18682, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10493, UINT16_MAX, 8644, UINT16_MAX, 8644, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10495, 18689, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10500, UINT16_MAX, 8645, UINT16_MAX, 8645, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10502, 18696, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10507, UINT16_MAX, 8646, UINT16_MAX, 8646, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10509, 2319, UINT16_MAX, 2319, UINT16_MAX, 4529, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10512, 2322, UINT16_MAX, 2322, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10515, 2325, UINT16_MAX, 2325, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10518, 2328, UINT16_MAX, 2328, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10521, UINT16_MAX, 8647, UINT16_MAX, 8647, 4581, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10523, UINT16_MAX, 8648, UINT16_MAX, 8648, 4634, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10525, UINT16_MAX, 8649, UINT16_MAX, 8649, 4865, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10527, UINT16_MAX, 8650, UINT16_MAX, 8650, 4868, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10529, UINT16_MAX, 8651, UINT16_MAX, 8651, 4871, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10531, UINT16_MAX, 8652, UINT16_MAX, 8652, 4874, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10533, UINT16_MAX, 8653, UINT16_MAX, 8653, 4877, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10535, UINT16_MAX, 8654, UINT16_MAX, 8654, 4880, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10537, 2347, UINT16_MAX, 2347, UINT16_MAX, 4687, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10540, 2350, UINT16_MAX, 2350, UINT16_MAX, 4740, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10543, 2353, UINT16_MAX, 2353, UINT16_MAX, 4883, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10546, 2356, UINT16_MAX, 2356, UINT16_MAX, 4886, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10549, 2359, UINT16_MAX, 2359, UINT16_MAX, 4889, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10552, 2362, UINT16_MAX, 2362, UINT16_MAX, 4892, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10555, 2365, UINT16_MAX, 2365, UINT16_MAX, 4895, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10558, 2368, UINT16_MAX, 2368, UINT16_MAX, 4898, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10561, UINT16_MAX, 8655, UINT16_MAX, 8655, 4901, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 820, UINT16_MAX, 8656, UINT16_MAX, 8656, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10563, UINT16_MAX, 8657, UINT16_MAX, 8657, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 824, UINT16_MAX, 8658, UINT16_MAX, 8658, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10565, UINT16_MAX, 8659, UINT16_MAX, 8659, 4910, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 827, UINT16_MAX, 8660, UINT16_MAX, 8660, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10567, UINT16_MAX, 8661, UINT16_MAX, 8661, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 830, UINT16_MAX, 8662, UINT16_MAX, 8662, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10569, UINT16_MAX, 8663, UINT16_MAX, 8663, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 833, UINT16_MAX, 8664, UINT16_MAX, 8664, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10571, UINT16_MAX, 8665, UINT16_MAX, 8665, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 836, UINT16_MAX, 8666, UINT16_MAX, 8666, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10573, UINT16_MAX, 8667, UINT16_MAX, 8667, 5030, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 839, UINT16_MAX, 8668, UINT16_MAX, 8668, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10575, 10577, 8669, UINT16_MAX, 8669, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10579, 10581, 8670, UINT16_MAX, 8670, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10583, 10585, 8671, UINT16_MAX, 8671, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10587, 10589, 8672, UINT16_MAX, 8672, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10591, 10593, 8673, UINT16_MAX, 8673, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10595, 10597, 8674, UINT16_MAX, 8674, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10599, 10601, 8675, UINT16_MAX, 8675, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10603, 10605, 8676, UINT16_MAX, 8676, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10607, 2417, UINT16_MAX, 2417, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10610, 2420, UINT16_MAX, 2420, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10613, 2423, UINT16_MAX, 2423, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10616, 2426, UINT16_MAX, 2426, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10619, 2429, UINT16_MAX, 2429, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10622, 2432, UINT16_MAX, 2432, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10625, 2435, UINT16_MAX, 2435, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10628, 2438, UINT16_MAX, 2438, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10631, 10633, 8677, UINT16_MAX, 8677, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10635, 10637, 8678, UINT16_MAX, 8678, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10639, 10641, 8679, UINT16_MAX, 8679, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10643, 10645, 8680, UINT16_MAX, 8680, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10647, 10649, 8681, UINT16_MAX, 8681, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10651, 10653, 8682, UINT16_MAX, 8682, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10655, 10657, 8683, UINT16_MAX, 8683, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10659, 10661, 8684, UINT16_MAX, 8684, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10663, 2473, UINT16_MAX, 2473, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10666, 2476, UINT16_MAX, 2476, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10669, 2479, UINT16_MAX, 2479, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10672, 2482, UINT16_MAX, 2482, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10675, 2485, UINT16_MAX, 2485, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10678, 2488, UINT16_MAX, 2488, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10681, 2491, UINT16_MAX, 2491, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10684, 2494, UINT16_MAX, 2494, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10687, 10689, 8685, UINT16_MAX, 8685, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10691, 10693, 8686, UINT16_MAX, 8686, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10695, 10697, 8687, UINT16_MAX, 8687, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10699, 10701, 8688, UINT16_MAX, 8688, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10703, 10705, 8689, UINT16_MAX, 8689, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10707, 10709, 8690, UINT16_MAX, 8690, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10711, 10713, 8691, UINT16_MAX, 8691, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10715, 10717, 8692, UINT16_MAX, 8692, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10719, 2529, UINT16_MAX, 2529, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10722, 2532, UINT16_MAX, 2532, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10725, 2535, UINT16_MAX, 2535, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10728, 2538, UINT16_MAX, 2538, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10731, 2541, UINT16_MAX, 2541, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10734, 2544, UINT16_MAX, 2544, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10737, 2547, UINT16_MAX, 2547, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10740, 2550, UINT16_MAX, 2550, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10743, UINT16_MAX, 8693, UINT16_MAX, 8693, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10745, UINT16_MAX, 8694, UINT16_MAX, 8694, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10747, 10749, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10751, 10753, 8695, UINT16_MAX, 8695, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10755, 10757, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10759, 10759, UINT16_MAX, UINT16_MAX, UINT16_MAX, 4907, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10761, 18955, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10766, 2576, UINT16_MAX, 2576, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10769, 2579, UINT16_MAX, 2579, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10772, 2582, UINT16_MAX, 2582, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2583, 2584, UINT16_MAX, 2584, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10777, 2587, UINT16_MAX, 2587, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10780, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 807, 807, 7127, UINT16_MAX, 7127, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10780, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 4919, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10782, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10784, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10786, 10788, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10790, 10792, 8696, UINT16_MAX, 8696, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10794, 10796, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10798, 10798, UINT16_MAX, UINT16_MAX, UINT16_MAX, 4916, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10800, 18994, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10805, 2615, UINT16_MAX, 2615, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2616, 2617, UINT16_MAX, 2617, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10810, 2620, UINT16_MAX, 2620, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2621, 2622, UINT16_MAX, 2622, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10815, 2625, UINT16_MAX, 2625, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10818, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10820, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10822, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10824, UINT16_MAX, 8697, UINT16_MAX, 8697, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10826, UINT16_MAX, 8698, UINT16_MAX, 8698, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10828, 19022, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 2641, 17226, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10834, 10834, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10836, 19030, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10841, 2651, UINT16_MAX, 2651, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10844, 2654, UINT16_MAX, 2654, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10847, 2657, UINT16_MAX, 2657, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2658, 2659, UINT16_MAX, 2659, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10852, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10854, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10856, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10858, UINT16_MAX, 8699, UINT16_MAX, 8699, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10860, UINT16_MAX, 8700, UINT16_MAX, 8700, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10862, 19056, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 2675, 17267, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10868, 10868, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10870, UINT16_MAX, 8701, UINT16_MAX, 8701, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10872, 10872, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10874, 19068, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10879, 2689, UINT16_MAX, 2689, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10882, 2692, UINT16_MAX, 2692, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10885, 2695, UINT16_MAX, 2695, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2696, 2697, UINT16_MAX, 2697, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10890, 2700, UINT16_MAX, 2700, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10893, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 2703, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 2704, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10897, 10899, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10901, 10903, 8702, UINT16_MAX, 8702, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10905, 10907, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10909, 10909, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5036, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10911, 19105, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10916, 2726, UINT16_MAX, 2726, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2727, 2728, UINT16_MAX, 2728, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10921, 2731, UINT16_MAX, 2731, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2732, 2733, UINT16_MAX, 2733, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10926, 2736, UINT16_MAX, 2736, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 2737, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10930, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 4971, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ZS, 0, UTF8PROC_BIDI_CLASS_WS, 0, 2740, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ZS, 0, UTF8PROC_BIDI_CLASS_WS, 0, 2741, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10061, UINT16_MAX, 8962, UINT16_MAX, 8962, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10063, 1873, UINT16_MAX, 1873, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10066, UINT16_MAX, 8963, UINT16_MAX, 8963, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10068, 1878, UINT16_MAX, 1878, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10071, UINT16_MAX, 8964, UINT16_MAX, 8964, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10073, 1883, UINT16_MAX, 1883, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10076, UINT16_MAX, 8965, UINT16_MAX, 8965, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10078, 1888, UINT16_MAX, 1888, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10081, UINT16_MAX, 8966, UINT16_MAX, 8966, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10083, 1893, UINT16_MAX, 1893, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10086, UINT16_MAX, 8967, UINT16_MAX, 8967, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10088, 1898, UINT16_MAX, 1898, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10091, UINT16_MAX, 8968, UINT16_MAX, 8968, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10093, 1903, UINT16_MAX, 1903, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10096, UINT16_MAX, 8969, UINT16_MAX, 8969, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10098, 1908, UINT16_MAX, 1908, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10101, UINT16_MAX, 8970, UINT16_MAX, 8970, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10103, 1913, UINT16_MAX, 1913, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10106, UINT16_MAX, 8971, UINT16_MAX, 8971, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10108, 10108, 8972, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10110, 10110, 8973, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10112, 10112, 8974, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10114, 10114, 8975, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 10116, 10116, 8976, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10118, 1783, 8945, UINT16_MAX, 8945, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8977, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8978, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 8322, UINT16_MAX, 8979, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8980, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10120, 1930, UINT16_MAX, 1930, UINT16_MAX, 3241, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10123, UINT16_MAX, 8981, UINT16_MAX, 8981, 3250, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10125, 1935, UINT16_MAX, 1935, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10128, UINT16_MAX, 8982, UINT16_MAX, 8982, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10130, 1940, UINT16_MAX, 1940, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10133, UINT16_MAX, 8983, UINT16_MAX, 8983, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10135, 1945, UINT16_MAX, 1945, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10138, UINT16_MAX, 8984, UINT16_MAX, 8984, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10140, 1950, UINT16_MAX, 1950, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10143, UINT16_MAX, 8985, UINT16_MAX, 8985, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10145, 1955, UINT16_MAX, 1955, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10148, UINT16_MAX, 8986, UINT16_MAX, 8986, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10150, 1960, UINT16_MAX, 1960, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10153, UINT16_MAX, 8987, UINT16_MAX, 8987, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10155, 1965, UINT16_MAX, 1965, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10158, UINT16_MAX, 8988, UINT16_MAX, 8988, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10160, 1970, UINT16_MAX, 1970, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10163, UINT16_MAX, 8989, UINT16_MAX, 8989, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10165, 1975, UINT16_MAX, 1975, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10168, UINT16_MAX, 8990, UINT16_MAX, 8990, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10170, 1980, UINT16_MAX, 1980, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10173, UINT16_MAX, 8991, UINT16_MAX, 8991, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10175, 1985, UINT16_MAX, 1985, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10178, UINT16_MAX, 8992, UINT16_MAX, 8992, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10180, 1990, UINT16_MAX, 1990, UINT16_MAX, 3455, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10183, UINT16_MAX, 8993, UINT16_MAX, 8993, 3458, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10185, 1995, UINT16_MAX, 1995, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10188, UINT16_MAX, 8994, UINT16_MAX, 8994, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10190, 2000, UINT16_MAX, 2000, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10193, UINT16_MAX, 8995, UINT16_MAX, 8995, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10195, 2005, UINT16_MAX, 2005, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10198, UINT16_MAX, 8996, UINT16_MAX, 8996, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10200, 2010, UINT16_MAX, 2010, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10203, UINT16_MAX, 8997, UINT16_MAX, 8997, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10205, 2015, UINT16_MAX, 2015, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10208, UINT16_MAX, 8998, UINT16_MAX, 8998, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10210, 2020, UINT16_MAX, 2020, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10213, UINT16_MAX, 8999, UINT16_MAX, 8999, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10215, 2025, UINT16_MAX, 2025, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10218, UINT16_MAX, 9000, UINT16_MAX, 9000, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10220, 2030, UINT16_MAX, 2030, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10223, UINT16_MAX, 9001, UINT16_MAX, 9001, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10225, 2035, UINT16_MAX, 2035, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10228, UINT16_MAX, 9002, UINT16_MAX, 9002, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10230, 2040, UINT16_MAX, 2040, UINT16_MAX, 3559, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10233, UINT16_MAX, 9003, UINT16_MAX, 9003, 3562, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10235, 2045, UINT16_MAX, 2045, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10238, UINT16_MAX, 9004, UINT16_MAX, 9004, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10240, 2050, UINT16_MAX, 2050, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10243, UINT16_MAX, 9005, UINT16_MAX, 9005, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10245, 2055, UINT16_MAX, 2055, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10248, UINT16_MAX, 9006, UINT16_MAX, 9006, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10250, 2060, UINT16_MAX, 2060, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10253, UINT16_MAX, 9007, UINT16_MAX, 9007, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10255, 2065, UINT16_MAX, 2065, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10258, UINT16_MAX, 9008, UINT16_MAX, 9008, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10260, 2070, UINT16_MAX, 2070, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10263, UINT16_MAX, 9009, UINT16_MAX, 9009, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10265, 2075, UINT16_MAX, 2075, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10268, UINT16_MAX, 9010, UINT16_MAX, 9010, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10270, 2080, UINT16_MAX, 2080, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10273, UINT16_MAX, 9011, UINT16_MAX, 9011, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10275, 2085, UINT16_MAX, 2085, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10278, UINT16_MAX, 9012, UINT16_MAX, 9012, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10280, 2090, UINT16_MAX, 2090, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10283, UINT16_MAX, 9013, UINT16_MAX, 9013, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10285, 2095, UINT16_MAX, 2095, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10288, UINT16_MAX, 9014, UINT16_MAX, 9014, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10290, 2100, UINT16_MAX, 2100, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10293, UINT16_MAX, 9015, UINT16_MAX, 9015, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10295, 2105, UINT16_MAX, 2105, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10298, UINT16_MAX, 9016, UINT16_MAX, 9016, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10300, 2110, UINT16_MAX, 2110, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10303, UINT16_MAX, 9017, UINT16_MAX, 9017, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10305, 2115, UINT16_MAX, 2115, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10308, UINT16_MAX, 9018, UINT16_MAX, 9018, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10310, 2120, UINT16_MAX, 2120, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10313, UINT16_MAX, 9019, UINT16_MAX, 9019, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10315, 2125, UINT16_MAX, 2125, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10318, UINT16_MAX, 9020, UINT16_MAX, 9020, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10320, 2130, UINT16_MAX, 2130, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10323, UINT16_MAX, 9021, UINT16_MAX, 9021, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10325, 2135, UINT16_MAX, 2135, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10328, UINT16_MAX, 9022, UINT16_MAX, 9022, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10330, 2140, UINT16_MAX, 2140, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10333, UINT16_MAX, 9023, UINT16_MAX, 9023, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10335, 2145, UINT16_MAX, 2145, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10338, UINT16_MAX, 9024, UINT16_MAX, 9024, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10340, 2150, UINT16_MAX, 2150, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10343, UINT16_MAX, 9025, UINT16_MAX, 9025, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 2153, UINT16_MAX, 2153, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9026, UINT16_MAX, 9026, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 2154, UINT16_MAX, 2154, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9027, UINT16_MAX, 9027, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 2155, UINT16_MAX, 2155, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9028, UINT16_MAX, 9028, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10348, UINT16_MAX, 9029, UINT16_MAX, 9029, 3761, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10350, UINT16_MAX, 9030, UINT16_MAX, 9030, 3814, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10352, UINT16_MAX, 9031, UINT16_MAX, 9031, 4793, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10354, UINT16_MAX, 9032, UINT16_MAX, 9032, 4796, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10356, UINT16_MAX, 9033, UINT16_MAX, 9033, 4799, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10358, UINT16_MAX, 9034, UINT16_MAX, 9034, 4802, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10360, UINT16_MAX, 9035, UINT16_MAX, 9035, 4805, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10362, UINT16_MAX, 9036, UINT16_MAX, 9036, 4808, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10364, 2174, UINT16_MAX, 2174, UINT16_MAX, 3867, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10367, 2177, UINT16_MAX, 2177, UINT16_MAX, 3920, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10370, 2180, UINT16_MAX, 2180, UINT16_MAX, 4811, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10373, 2183, UINT16_MAX, 2183, UINT16_MAX, 4814, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10376, 2186, UINT16_MAX, 2186, UINT16_MAX, 4817, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10379, 2189, UINT16_MAX, 2189, UINT16_MAX, 4820, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10382, 2192, UINT16_MAX, 2192, UINT16_MAX, 4823, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10385, 2195, UINT16_MAX, 2195, UINT16_MAX, 4826, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10388, UINT16_MAX, 9037, UINT16_MAX, 9037, 3973, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10390, UINT16_MAX, 9038, UINT16_MAX, 9038, 3977, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10392, UINT16_MAX, 9039, UINT16_MAX, 9039, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10394, UINT16_MAX, 9040, UINT16_MAX, 9040, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10396, UINT16_MAX, 9041, UINT16_MAX, 9041, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10398, UINT16_MAX, 9042, UINT16_MAX, 9042, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10400, 2210, UINT16_MAX, 2210, UINT16_MAX, 3981, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10403, 2213, UINT16_MAX, 2213, UINT16_MAX, 3985, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10406, 2216, UINT16_MAX, 2216, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10409, 2219, UINT16_MAX, 2219, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10412, 2222, UINT16_MAX, 2222, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10415, 2225, UINT16_MAX, 2225, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10418, UINT16_MAX, 9043, UINT16_MAX, 9043, 3989, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10420, UINT16_MAX, 9044, UINT16_MAX, 9044, 4042, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10422, UINT16_MAX, 9045, UINT16_MAX, 9045, 4829, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10424, UINT16_MAX, 9046, UINT16_MAX, 9046, 4832, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10426, UINT16_MAX, 9047, UINT16_MAX, 9047, 4835, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10428, UINT16_MAX, 9048, UINT16_MAX, 9048, 4838, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10430, UINT16_MAX, 9049, UINT16_MAX, 9049, 4841, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10432, UINT16_MAX, 9050, UINT16_MAX, 9050, 4844, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10434, 2244, UINT16_MAX, 2244, UINT16_MAX, 4095, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10437, 2247, UINT16_MAX, 2247, UINT16_MAX, 4148, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10440, 2250, UINT16_MAX, 2250, UINT16_MAX, 4847, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10443, 2253, UINT16_MAX, 2253, UINT16_MAX, 4850, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10446, 2256, UINT16_MAX, 2256, UINT16_MAX, 4853, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10449, 2259, UINT16_MAX, 2259, UINT16_MAX, 4856, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10452, 2262, UINT16_MAX, 2262, UINT16_MAX, 4859, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10455, 2265, UINT16_MAX, 2265, UINT16_MAX, 4862, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10458, UINT16_MAX, 9051, UINT16_MAX, 9051, 4201, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10460, UINT16_MAX, 9052, UINT16_MAX, 9052, 4253, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10462, UINT16_MAX, 9053, UINT16_MAX, 9053, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10464, UINT16_MAX, 9054, UINT16_MAX, 9054, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10466, UINT16_MAX, 9055, UINT16_MAX, 9055, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10468, UINT16_MAX, 9056, UINT16_MAX, 9056, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10470, UINT16_MAX, 9057, UINT16_MAX, 9057, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10472, UINT16_MAX, 9058, UINT16_MAX, 9058, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10474, 2284, UINT16_MAX, 2284, UINT16_MAX, 4305, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10477, 2287, UINT16_MAX, 2287, UINT16_MAX, 4357, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10480, 2290, UINT16_MAX, 2290, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10483, 2293, UINT16_MAX, 2293, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10486, 2296, UINT16_MAX, 2296, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10489, 2299, UINT16_MAX, 2299, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10492, 2302, UINT16_MAX, 2302, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10495, 2305, UINT16_MAX, 2305, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10498, UINT16_MAX, 9059, UINT16_MAX, 9059, 4409, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10500, UINT16_MAX, 9060, UINT16_MAX, 9060, 4413, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10502, UINT16_MAX, 9061, UINT16_MAX, 9061, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10504, UINT16_MAX, 9062, UINT16_MAX, 9062, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10506, UINT16_MAX, 9063, UINT16_MAX, 9063, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10508, UINT16_MAX, 9064, UINT16_MAX, 9064, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10510, 2320, UINT16_MAX, 2320, UINT16_MAX, 4417, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10513, 2323, UINT16_MAX, 2323, UINT16_MAX, 4421, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10516, 2326, UINT16_MAX, 2326, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10519, 2329, UINT16_MAX, 2329, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10522, 2332, UINT16_MAX, 2332, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10525, 2335, UINT16_MAX, 2335, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10528, 10528, 9065, UINT16_MAX, UINT16_MAX, 4425, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10530, UINT16_MAX, 9066, UINT16_MAX, 9066, 4477, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10532, 18726, 9067, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10537, UINT16_MAX, 9068, UINT16_MAX, 9068, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10539, 18733, 9069, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10544, UINT16_MAX, 9070, UINT16_MAX, 9070, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10546, 18740, 9071, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10551, UINT16_MAX, 9072, UINT16_MAX, 9072, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10553, 2363, UINT16_MAX, 2363, UINT16_MAX, 4529, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10556, 2366, UINT16_MAX, 2366, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10559, 2369, UINT16_MAX, 2369, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10562, 2372, UINT16_MAX, 2372, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10565, UINT16_MAX, 9073, UINT16_MAX, 9073, 4581, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10567, UINT16_MAX, 9074, UINT16_MAX, 9074, 4634, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10569, UINT16_MAX, 9075, UINT16_MAX, 9075, 4865, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10571, UINT16_MAX, 9076, UINT16_MAX, 9076, 4868, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10573, UINT16_MAX, 9077, UINT16_MAX, 9077, 4871, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10575, UINT16_MAX, 9078, UINT16_MAX, 9078, 4874, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10577, UINT16_MAX, 9079, UINT16_MAX, 9079, 4877, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10579, UINT16_MAX, 9080, UINT16_MAX, 9080, 4880, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10581, 2391, UINT16_MAX, 2391, UINT16_MAX, 4687, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10584, 2394, UINT16_MAX, 2394, UINT16_MAX, 4740, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10587, 2397, UINT16_MAX, 2397, UINT16_MAX, 4883, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10590, 2400, UINT16_MAX, 2400, UINT16_MAX, 4886, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10593, 2403, UINT16_MAX, 2403, UINT16_MAX, 4889, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10596, 2406, UINT16_MAX, 2406, UINT16_MAX, 4892, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10599, 2409, UINT16_MAX, 2409, UINT16_MAX, 4895, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10602, 2412, UINT16_MAX, 2412, UINT16_MAX, 4898, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10605, UINT16_MAX, 9081, UINT16_MAX, 9081, 4901, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 820, UINT16_MAX, 9082, UINT16_MAX, 9082, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10607, UINT16_MAX, 9083, UINT16_MAX, 9083, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 824, UINT16_MAX, 9084, UINT16_MAX, 9084, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10609, UINT16_MAX, 9085, UINT16_MAX, 9085, 4910, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 827, UINT16_MAX, 9086, UINT16_MAX, 9086, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10611, UINT16_MAX, 9087, UINT16_MAX, 9087, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 830, UINT16_MAX, 9088, UINT16_MAX, 9088, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10613, UINT16_MAX, 9089, UINT16_MAX, 9089, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 833, UINT16_MAX, 9090, UINT16_MAX, 9090, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10615, UINT16_MAX, 9091, UINT16_MAX, 9091, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 836, UINT16_MAX, 9092, UINT16_MAX, 9092, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10617, UINT16_MAX, 9093, UINT16_MAX, 9093, 5030, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 839, UINT16_MAX, 9094, UINT16_MAX, 9094, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10619, 10621, 9095, UINT16_MAX, 9095, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10623, 10625, 9096, UINT16_MAX, 9096, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10627, 10629, 9097, UINT16_MAX, 9097, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10631, 10633, 9098, UINT16_MAX, 9098, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10635, 10637, 9099, UINT16_MAX, 9099, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10639, 10641, 9100, UINT16_MAX, 9100, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10643, 10645, 9101, UINT16_MAX, 9101, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10647, 10649, 9102, UINT16_MAX, 9102, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10651, 10621, UINT16_MAX, 9103, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10653, 10625, UINT16_MAX, 9104, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10655, 10629, UINT16_MAX, 9105, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10657, 10633, UINT16_MAX, 9106, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10659, 10637, UINT16_MAX, 9107, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10661, 10641, UINT16_MAX, 9108, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10663, 10645, UINT16_MAX, 9109, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10665, 10649, UINT16_MAX, 9110, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10667, 10669, 9111, UINT16_MAX, 9111, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10671, 10673, 9112, UINT16_MAX, 9112, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10675, 10677, 9113, UINT16_MAX, 9113, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10679, 10681, 9114, UINT16_MAX, 9114, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10683, 10685, 9115, UINT16_MAX, 9115, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10687, 10689, 9116, UINT16_MAX, 9116, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10691, 10693, 9117, UINT16_MAX, 9117, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10695, 10697, 9118, UINT16_MAX, 9118, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10699, 10669, UINT16_MAX, 9119, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10701, 10673, UINT16_MAX, 9120, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10703, 10677, UINT16_MAX, 9121, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10705, 10681, UINT16_MAX, 9122, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10707, 10685, UINT16_MAX, 9123, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10709, 10689, UINT16_MAX, 9124, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10711, 10693, UINT16_MAX, 9125, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10713, 10697, UINT16_MAX, 9126, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10715, 10717, 9127, UINT16_MAX, 9127, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10719, 10721, 9128, UINT16_MAX, 9128, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10723, 10725, 9129, UINT16_MAX, 9129, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10727, 10729, 9130, UINT16_MAX, 9130, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10731, 10733, 9131, UINT16_MAX, 9131, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10735, 10737, 9132, UINT16_MAX, 9132, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10739, 10741, 9133, UINT16_MAX, 9133, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10743, 10745, 9134, UINT16_MAX, 9134, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10747, 10717, UINT16_MAX, 9135, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10749, 10721, UINT16_MAX, 9136, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10751, 10725, UINT16_MAX, 9137, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10753, 10729, UINT16_MAX, 9138, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10755, 10733, UINT16_MAX, 9139, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10757, 10737, UINT16_MAX, 9140, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10759, 10741, UINT16_MAX, 9141, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10761, 10745, UINT16_MAX, 9142, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10763, UINT16_MAX, 9143, UINT16_MAX, 9143, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10765, UINT16_MAX, 9144, UINT16_MAX, 9144, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10767, 10769, 9145, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10771, 10773, 9146, UINT16_MAX, 9146, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10775, 10777, 9147, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10779, 10779, 9148, UINT16_MAX, UINT16_MAX, 4907, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10781, 18975, 9149, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10786, 2596, UINT16_MAX, 2596, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10789, 2599, UINT16_MAX, 2599, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10792, 2602, UINT16_MAX, 2602, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2603, 2604, UINT16_MAX, 2604, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10797, 10773, UINT16_MAX, 9150, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10799, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 807, 807, 7225, UINT16_MAX, 7225, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10799, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 4919, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10801, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10803, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10805, 10807, 9151, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10809, 10811, 9152, UINT16_MAX, 9152, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10813, 10815, 9153, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10817, 10817, 9154, UINT16_MAX, UINT16_MAX, 4916, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10819, 19013, 9155, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10824, 2634, UINT16_MAX, 2634, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2635, 2636, UINT16_MAX, 2636, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10829, 2639, UINT16_MAX, 2639, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2640, 2641, UINT16_MAX, 2641, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10834, 10811, UINT16_MAX, 9156, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10836, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10838, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10840, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10842, UINT16_MAX, 9157, UINT16_MAX, 9157, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10844, UINT16_MAX, 9158, UINT16_MAX, 9158, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10846, 19040, 9159, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 2659, 17226, 9160, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10852, 10852, 9161, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10854, 19048, 9162, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10859, 2669, UINT16_MAX, 2669, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10862, 2672, UINT16_MAX, 2672, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10865, 2675, UINT16_MAX, 2675, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2676, 2677, UINT16_MAX, 2677, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10870, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10872, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10874, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10876, UINT16_MAX, 9163, UINT16_MAX, 9163, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10878, UINT16_MAX, 9164, UINT16_MAX, 9164, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10880, 19074, 9165, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 2693, 17267, 9166, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10886, 10886, 9167, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10888, UINT16_MAX, 9168, UINT16_MAX, 9168, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10890, 10890, 9169, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10892, 19086, 9170, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10897, 2707, UINT16_MAX, 2707, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10900, 2710, UINT16_MAX, 2710, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10903, 2713, UINT16_MAX, 2713, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2714, 2715, UINT16_MAX, 2715, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10908, 2718, UINT16_MAX, 2718, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 10911, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 2721, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 2722, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10915, 10917, 9171, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10919, 10921, 9172, UINT16_MAX, 9172, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10923, 10925, 9173, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10927, 10927, 9174, UINT16_MAX, UINT16_MAX, 5036, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, 10929, 19123, 9175, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10934, 2744, UINT16_MAX, 2744, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2745, 2746, UINT16_MAX, 2746, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 10939, 2749, UINT16_MAX, 2749, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2750, 2751, UINT16_MAX, 2751, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LT, 0, UTF8PROC_BIDI_CLASS_L, 0, 10944, 10921, UINT16_MAX, 9176, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, 2754, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10947, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 4971, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ZS, 0, UTF8PROC_BIDI_CLASS_WS, 0, 2757, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ZS, 0, UTF8PROC_BIDI_CLASS_WS, 0, 2758, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_ZS, 0, UTF8PROC_BIDI_CLASS_WS, UTF8PROC_DECOMP_TYPE_COMPAT, 26, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ZS, 0, UTF8PROC_BIDI_CLASS_WS, UTF8PROC_DECOMP_TYPE_COMPAT, 26, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_ZS, 0, UTF8PROC_BIDI_CLASS_WS, UTF8PROC_DECOMP_TYPE_NOBREAK, 26, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_BN, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_BN, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 0, 0, UTF8PROC_BOUNDCLASS_ZWJ}, {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, - {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NOBREAK, 2742, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10935, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NOBREAK, 2759, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10952, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PI, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PF, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 2745, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10938, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19132, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 2762, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10955, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19149, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_ZL, 0, UTF8PROC_BIDI_CLASS_WS, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, {UTF8PROC_CATEGORY_ZP, 0, UTF8PROC_BIDI_CLASS_B, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_LRE, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, @@ -8663,423 +9729,415 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_PDF, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_LRO, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_RLO, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_COMPAT, 10943, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_COMPAT, 19137, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10948, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19142, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10953, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10955, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_COMPAT, 10960, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_COMPAT, 19154, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10965, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19159, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10970, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10972, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_CS, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10957, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10959, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10961, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27347, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10974, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10976, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10978, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27364, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_LRI, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_RLI, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_FSI, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_PDI, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 2775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 8, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 2776, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 2777, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 2778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 2779, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 2780, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 2781, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_SUPER, 2782, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_SUPER, 2783, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUPER, 2784, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUPER, 2785, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUPER, 2786, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 13, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 2775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 2792, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 8, UINT16_MAX, 9177, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 2793, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 2794, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 2795, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 2796, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 2797, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUPER, 2798, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_SUPER, 2799, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_SUPER, 2800, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUPER, 2801, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUPER, 2802, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUPER, 2803, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 13, UINT16_MAX, 9178, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 2792, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 38, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 31, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 32, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 2776, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 2777, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 2778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 2779, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 2780, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 2781, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_SUB, 2782, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_SUB, 2783, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUB, 2784, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUB, 2785, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUB, 2786, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 4, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 14, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 23, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 485, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 7, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 10, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 11, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 12, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 13, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 15, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 18, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 19, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_COMPAT, 10979, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19173, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19176, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2795, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10988, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19182, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19185, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2804, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10997, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 6, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1453, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 277, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1454, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1457, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1459, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 10999, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1462, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2809, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1463, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUPER, 11002, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19196, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUPER, 11007, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2817, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2818, 866, UINT16_MAX, 866, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 1456, 10, UINT16_MAX, 10, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2819, 65, UINT16_MAX, 65, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1448, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1450, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2820, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 2821, UINT16_MAX, 2821, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1458, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 14, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2822, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2823, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2824, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2825, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19210, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 858, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 847, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2829, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2830, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FONT, 2831, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1449, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8703, UINT16_MAX, 8703, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19216, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19219, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 27414, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19226, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19229, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19232, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19235, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19238, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19241, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19244, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19247, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19250, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19253, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19256, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19259, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 11070, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 1454, 2880, UINT16_MAX, 2880, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11073, 2883, UINT16_MAX, 2883, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19268, 2887, UINT16_MAX, 2887, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11080, 2890, UINT16_MAX, 2890, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2891, 2892, UINT16_MAX, 2892, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11085, 2895, UINT16_MAX, 2895, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19280, 2899, UINT16_MAX, 2899, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 27476, 2904, UINT16_MAX, 2904, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 2793, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 2794, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 2795, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 2796, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 2797, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_SUB, 2798, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_SUB, 2799, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_SUB, 2800, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUB, 2801, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUB, 2802, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUB, 2803, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 0, UINT16_MAX, 9179, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 4, UINT16_MAX, 9180, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 14, UINT16_MAX, 9181, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 23, UINT16_MAX, 9182, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 485, UINT16_MAX, 9183, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 7, UINT16_MAX, 9184, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 10, UINT16_MAX, 9185, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 11, UINT16_MAX, 9186, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 12, UINT16_MAX, 9187, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 13, UINT16_MAX, 9188, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 15, UINT16_MAX, 9189, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 18, UINT16_MAX, 9190, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 19, UINT16_MAX, 9191, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_COMPAT, 10996, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19190, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19193, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2812, UINT16_MAX, UINT16_MAX, 9192, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 11005, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19199, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19202, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2821, UINT16_MAX, UINT16_MAX, 9193, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 11014, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 6, UINT16_MAX, 9194, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1498, UINT16_MAX, UINT16_MAX, 9195, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1498, UINT16_MAX, UINT16_MAX, 9196, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1498, UINT16_MAX, UINT16_MAX, 9197, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7, UINT16_MAX, 9198, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 277, UINT16_MAX, 9199, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1499, UINT16_MAX, UINT16_MAX, 9200, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1499, UINT16_MAX, UINT16_MAX, 9201, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1502, UINT16_MAX, UINT16_MAX, 9202, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, 9203, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1504, UINT16_MAX, UINT16_MAX, 9204, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 11016, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1507, UINT16_MAX, UINT16_MAX, 9205, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2826, UINT16_MAX, UINT16_MAX, 9206, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1508, UINT16_MAX, UINT16_MAX, 9207, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1508, UINT16_MAX, UINT16_MAX, 9208, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1508, UINT16_MAX, UINT16_MAX, 9209, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUPER, 11019, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19213, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUPER, 11024, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2834, UINT16_MAX, UINT16_MAX, 9210, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2835, 866, UINT16_MAX, 866, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2834, UINT16_MAX, UINT16_MAX, 9211, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 1501, 10, UINT16_MAX, 10, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, 2836, 65, UINT16_MAX, 65, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1493, UINT16_MAX, UINT16_MAX, 9212, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2812, UINT16_MAX, UINT16_MAX, 9213, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, 9214, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1495, UINT16_MAX, UINT16_MAX, 9215, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2837, UINT16_MAX, UINT16_MAX, 9216, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 2838, UINT16_MAX, 2838, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1503, UINT16_MAX, UINT16_MAX, 9217, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 14, UINT16_MAX, 9218, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2839, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2840, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2841, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2842, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, 9219, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19227, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 858, UINT16_MAX, 9220, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 847, UINT16_MAX, 9221, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2846, UINT16_MAX, UINT16_MAX, 9222, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2847, UINT16_MAX, UINT16_MAX, 9223, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FONT, 2848, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1494, UINT16_MAX, UINT16_MAX, 9224, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, 9225, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, 9226, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, 9227, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, 9228, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9229, UINT16_MAX, 9229, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19233, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19236, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 27431, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19243, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19246, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19249, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19252, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19255, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19258, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19261, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19264, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19267, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19270, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19273, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19276, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 11087, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 1499, 2897, UINT16_MAX, 2897, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11090, 2900, UINT16_MAX, 2900, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19285, 2904, UINT16_MAX, 2904, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11097, 2907, UINT16_MAX, 2907, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2908, 2909, UINT16_MAX, 2909, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11102, 2912, UINT16_MAX, 2912, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19297, 2916, UINT16_MAX, 2916, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 1457, 2917, UINT16_MAX, 2917, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2795, 2918, UINT16_MAX, 2918, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 1449, 2919, UINT16_MAX, 2919, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 1458, 2920, UINT16_MAX, 2920, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8, UINT16_MAX, 8704, UINT16_MAX, 8704, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11113, UINT16_MAX, 8705, UINT16_MAX, 8705, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19307, UINT16_MAX, 8706, UINT16_MAX, 8706, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11118, UINT16_MAX, 8707, UINT16_MAX, 8707, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21, UINT16_MAX, 8708, UINT16_MAX, 8708, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11120, UINT16_MAX, 8709, UINT16_MAX, 8709, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19314, UINT16_MAX, 8710, UINT16_MAX, 8710, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 27509, UINT16_MAX, 8711, UINT16_MAX, 8711, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11129, UINT16_MAX, 8712, UINT16_MAX, 8712, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23, UINT16_MAX, 8713, UINT16_MAX, 8713, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11131, UINT16_MAX, 8714, UINT16_MAX, 8714, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19325, UINT16_MAX, 8715, UINT16_MAX, 8715, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11, UINT16_MAX, 8716, UINT16_MAX, 8716, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2, UINT16_MAX, 8717, UINT16_MAX, 8717, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3, UINT16_MAX, 8718, UINT16_MAX, 8718, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12, UINT16_MAX, 8719, UINT16_MAX, 8719, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 2944, UINT16_MAX, 2944, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8720, UINT16_MAX, 8720, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19329, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 27493, 2921, UINT16_MAX, 2921, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11114, 2924, UINT16_MAX, 2924, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2925, 2926, UINT16_MAX, 2926, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11119, 2929, UINT16_MAX, 2929, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19314, 2933, UINT16_MAX, 2933, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 1502, 2934, UINT16_MAX, 2934, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2812, 2935, UINT16_MAX, 2935, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 1494, 2936, UINT16_MAX, 2936, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 1503, 2937, UINT16_MAX, 2937, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 8, UINT16_MAX, 9230, UINT16_MAX, 9230, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11130, UINT16_MAX, 9231, UINT16_MAX, 9231, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19324, UINT16_MAX, 9232, UINT16_MAX, 9232, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11135, UINT16_MAX, 9233, UINT16_MAX, 9233, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21, UINT16_MAX, 9234, UINT16_MAX, 9234, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11137, UINT16_MAX, 9235, UINT16_MAX, 9235, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19331, UINT16_MAX, 9236, UINT16_MAX, 9236, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 27526, UINT16_MAX, 9237, UINT16_MAX, 9237, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11146, UINT16_MAX, 9238, UINT16_MAX, 9238, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23, UINT16_MAX, 9239, UINT16_MAX, 9239, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11148, UINT16_MAX, 9240, UINT16_MAX, 9240, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19342, UINT16_MAX, 9241, UINT16_MAX, 9241, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 11, UINT16_MAX, 9242, UINT16_MAX, 9242, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 2, UINT16_MAX, 9243, UINT16_MAX, 9243, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3, UINT16_MAX, 9244, UINT16_MAX, 9244, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12, UINT16_MAX, 9245, UINT16_MAX, 9245, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 2961, UINT16_MAX, 2961, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9246, UINT16_MAX, 9246, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FRACTION, 19346, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5039, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5042, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5045, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11140, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11142, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11144, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11146, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11148, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11150, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5045, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11157, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11159, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11161, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11163, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11165, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11167, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5048, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5054, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5051, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5057, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11152, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11169, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5060, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11154, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11171, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5063, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11156, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11173, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5066, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11158, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11175, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5069, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11160, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 11162, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19356, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 11167, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19361, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11177, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 11179, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19373, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 11184, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19378, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5072, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11172, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11189, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5075, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11174, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11191, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5078, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11176, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11193, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5081, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11178, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11195, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5090, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11180, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11197, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5087, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11182, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11199, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5099, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5102, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11184, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11186, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11188, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11190, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11192, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11201, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11203, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11205, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11207, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11209, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5105, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5108, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11194, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11196, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11211, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11213, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5111, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5114, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11198, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11200, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11215, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11217, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5117, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5120, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5147, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5150, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11202, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11204, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11219, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11221, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5123, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5126, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11206, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11208, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11223, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11225, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5129, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5132, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11210, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11212, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11227, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11229, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5153, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5156, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5135, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5138, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5141, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5144, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11214, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11216, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11218, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11220, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11231, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11233, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11235, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11237, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5159, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5162, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5165, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5168, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11222, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11224, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11226, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11228, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11230, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11232, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11234, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11236, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, 0, 3046, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, 0, 3047, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 38, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 31, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 32, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 2776, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 2777, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 2778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 2779, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 2780, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 2781, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11240, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11242, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11244, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11246, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11248, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11250, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11252, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11254, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11256, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11258, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11260, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19454, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19457, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19460, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19463, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19466, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19469, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19472, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19475, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19478, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27673, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27677, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27681, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27685, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27689, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27693, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27697, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27701, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27705, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27709, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27713, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11333, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11335, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11337, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11339, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11341, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11343, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11345, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11347, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11349, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19543, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19546, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19549, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19552, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19555, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19558, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19561, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19564, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19567, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19570, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19573, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19576, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19579, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19582, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19585, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19588, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19591, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19594, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19597, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19600, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19603, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19606, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19609, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19612, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19615, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19618, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19621, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19624, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19627, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19630, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19633, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19636, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19639, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19642, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19645, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19648, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19651, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1446, 3270, UINT16_MAX, 3270, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1448, 3271, UINT16_MAX, 3271, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2795, 3272, UINT16_MAX, 3272, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1449, 3273, UINT16_MAX, 3273, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1450, 3274, UINT16_MAX, 3274, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2820, 3275, UINT16_MAX, 3275, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1452, 3276, UINT16_MAX, 3276, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1453, 3277, UINT16_MAX, 3277, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1454, 3278, UINT16_MAX, 3278, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1455, 3279, UINT16_MAX, 3279, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1456, 3280, UINT16_MAX, 3280, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1457, 3281, UINT16_MAX, 3281, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1458, 3282, UINT16_MAX, 3282, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1459, 3283, UINT16_MAX, 3283, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1460, 3284, UINT16_MAX, 3284, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1462, 3285, UINT16_MAX, 3285, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2809, 3286, UINT16_MAX, 3286, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1463, 3287, UINT16_MAX, 3287, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3288, 3289, UINT16_MAX, 3289, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1464, 3290, UINT16_MAX, 3290, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1465, 3291, UINT16_MAX, 3291, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2891, 3292, UINT16_MAX, 3292, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1466, 3293, UINT16_MAX, 3293, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2908, 3294, UINT16_MAX, 3294, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3295, 3296, UINT16_MAX, 3296, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2817, 3297, UINT16_MAX, 3297, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 0, UINT16_MAX, 8721, UINT16_MAX, 8721, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1, UINT16_MAX, 8722, UINT16_MAX, 8722, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2, UINT16_MAX, 8723, UINT16_MAX, 8723, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3, UINT16_MAX, 8724, UINT16_MAX, 8724, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4, UINT16_MAX, 8725, UINT16_MAX, 8725, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 5, UINT16_MAX, 8726, UINT16_MAX, 8726, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 6, UINT16_MAX, 8727, UINT16_MAX, 8727, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 7, UINT16_MAX, 8728, UINT16_MAX, 8728, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 8, UINT16_MAX, 8729, UINT16_MAX, 8729, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 9, UINT16_MAX, 8730, UINT16_MAX, 8730, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 10, UINT16_MAX, 8731, UINT16_MAX, 8731, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 11, UINT16_MAX, 8732, UINT16_MAX, 8732, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12, UINT16_MAX, 8733, UINT16_MAX, 8733, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 13, UINT16_MAX, 8734, UINT16_MAX, 8734, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 14, UINT16_MAX, 8735, UINT16_MAX, 8735, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 15, UINT16_MAX, 8736, UINT16_MAX, 8736, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 16, UINT16_MAX, 8737, UINT16_MAX, 8737, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 17, UINT16_MAX, 8738, UINT16_MAX, 8738, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 18, UINT16_MAX, 8739, UINT16_MAX, 8739, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 19, UINT16_MAX, 8740, UINT16_MAX, 8740, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 20, UINT16_MAX, 8741, UINT16_MAX, 8741, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 21, UINT16_MAX, 8742, UINT16_MAX, 8742, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 22, UINT16_MAX, 8743, UINT16_MAX, 8743, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 23, UINT16_MAX, 8744, UINT16_MAX, 8744, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 24, UINT16_MAX, 8745, UINT16_MAX, 8745, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 25, UINT16_MAX, 8746, UINT16_MAX, 8746, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 2775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_E_BASE}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_E_BASE}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_GLUE_AFTER_ZWJ}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27874, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19686, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 11497, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19691, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11502, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, true, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5171, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3312, UINT16_MAX, 3312, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3313, UINT16_MAX, 3313, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3314, UINT16_MAX, 3314, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3315, UINT16_MAX, 3315, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3316, UINT16_MAX, 3316, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3317, UINT16_MAX, 3317, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3318, UINT16_MAX, 3318, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3319, UINT16_MAX, 3319, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3320, UINT16_MAX, 3320, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3321, UINT16_MAX, 3321, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3322, UINT16_MAX, 3322, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3323, UINT16_MAX, 3323, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3324, UINT16_MAX, 3324, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3325, UINT16_MAX, 3325, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3326, UINT16_MAX, 3326, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3327, UINT16_MAX, 3327, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3328, UINT16_MAX, 3328, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11239, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11241, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11243, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11245, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11247, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11249, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11251, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11253, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, 0, 3063, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, 0, 3064, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 38, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 31, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 32, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 2793, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 2794, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 2795, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 2796, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 2797, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 2798, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11257, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11259, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11261, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11263, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11265, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11267, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11269, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11271, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11273, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11275, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 11277, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19471, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19474, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19477, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19480, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19483, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19486, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19489, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19492, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19495, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27690, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27694, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27698, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27702, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27706, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27710, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27714, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27718, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27722, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27726, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27730, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11350, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11352, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11354, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11356, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11358, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11360, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11362, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11364, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 11366, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19560, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19563, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19566, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19569, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19572, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19575, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19578, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19581, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19584, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19587, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 19590, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19593, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19596, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19599, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19602, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19605, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19608, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19611, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19614, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19617, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19620, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19623, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19626, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19629, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19632, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19635, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19638, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19641, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19644, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19647, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19650, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19653, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19656, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19659, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19662, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19665, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 19668, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1491, 3287, UINT16_MAX, 3287, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1493, 3288, UINT16_MAX, 3288, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2812, 3289, UINT16_MAX, 3289, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1494, 3290, UINT16_MAX, 3290, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1495, 3291, UINT16_MAX, 3291, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2837, 3292, UINT16_MAX, 3292, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1497, 3293, UINT16_MAX, 3293, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1498, 3294, UINT16_MAX, 3294, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1499, 3295, UINT16_MAX, 3295, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1500, 3296, UINT16_MAX, 3296, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1501, 3297, UINT16_MAX, 3297, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1502, 3298, UINT16_MAX, 3298, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1503, 3299, UINT16_MAX, 3299, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1504, 3300, UINT16_MAX, 3300, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1505, 3301, UINT16_MAX, 3301, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1507, 3302, UINT16_MAX, 3302, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2826, 3303, UINT16_MAX, 3303, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1508, 3304, UINT16_MAX, 3304, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3305, 3306, UINT16_MAX, 3306, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1509, 3307, UINT16_MAX, 3307, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1510, 3308, UINT16_MAX, 3308, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2908, 3309, UINT16_MAX, 3309, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1511, 3310, UINT16_MAX, 3310, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2925, 3311, UINT16_MAX, 3311, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3312, 3313, UINT16_MAX, 3313, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2834, 3314, UINT16_MAX, 3314, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 0, UINT16_MAX, 9247, UINT16_MAX, 9247, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1, UINT16_MAX, 9248, UINT16_MAX, 9248, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2, UINT16_MAX, 9249, UINT16_MAX, 9249, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3, UINT16_MAX, 9250, UINT16_MAX, 9250, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4, UINT16_MAX, 9251, UINT16_MAX, 9251, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 5, UINT16_MAX, 9252, UINT16_MAX, 9252, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 6, UINT16_MAX, 9253, UINT16_MAX, 9253, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 7, UINT16_MAX, 9254, UINT16_MAX, 9254, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 8, UINT16_MAX, 9255, UINT16_MAX, 9255, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 9, UINT16_MAX, 9256, UINT16_MAX, 9256, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 10, UINT16_MAX, 9257, UINT16_MAX, 9257, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 11, UINT16_MAX, 9258, UINT16_MAX, 9258, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12, UINT16_MAX, 9259, UINT16_MAX, 9259, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 13, UINT16_MAX, 9260, UINT16_MAX, 9260, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 14, UINT16_MAX, 9261, UINT16_MAX, 9261, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 15, UINT16_MAX, 9262, UINT16_MAX, 9262, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 16, UINT16_MAX, 9263, UINT16_MAX, 9263, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 17, UINT16_MAX, 9264, UINT16_MAX, 9264, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 18, UINT16_MAX, 9265, UINT16_MAX, 9265, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 19, UINT16_MAX, 9266, UINT16_MAX, 9266, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 20, UINT16_MAX, 9267, UINT16_MAX, 9267, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 21, UINT16_MAX, 9268, UINT16_MAX, 9268, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 22, UINT16_MAX, 9269, UINT16_MAX, 9269, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 23, UINT16_MAX, 9270, UINT16_MAX, 9270, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 24, UINT16_MAX, 9271, UINT16_MAX, 9271, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 25, UINT16_MAX, 9272, UINT16_MAX, 9272, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 2792, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 27891, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19703, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 11514, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 19708, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, 11519, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5171, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3329, UINT16_MAX, 3329, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3330, UINT16_MAX, 3330, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3331, UINT16_MAX, 3331, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -9094,7 +10152,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3340, UINT16_MAX, 3340, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3341, UINT16_MAX, 3341, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3342, UINT16_MAX, 3342, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3343, UINT16_MAX, 3343, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3343, UINT16_MAX, 3343, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3344, UINT16_MAX, 3344, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3345, UINT16_MAX, 3345, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3346, UINT16_MAX, 3346, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -9102,250 +10160,259 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3348, UINT16_MAX, 3348, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3349, UINT16_MAX, 3349, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3350, UINT16_MAX, 3350, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3351, UINT16_MAX, 3351, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3352, UINT16_MAX, 3352, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3353, UINT16_MAX, 3353, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3351, UINT16_MAX, 3351, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3352, UINT16_MAX, 3352, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3353, UINT16_MAX, 3353, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3354, UINT16_MAX, 3354, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3355, UINT16_MAX, 3355, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3356, UINT16_MAX, 3356, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3357, UINT16_MAX, 3357, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3358, UINT16_MAX, 3358, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8747, UINT16_MAX, 8747, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8748, UINT16_MAX, 8748, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8749, UINT16_MAX, 8749, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8750, UINT16_MAX, 8750, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8751, UINT16_MAX, 8751, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8752, UINT16_MAX, 8752, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8753, UINT16_MAX, 8753, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8754, UINT16_MAX, 8754, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8755, UINT16_MAX, 8755, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8756, UINT16_MAX, 8756, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8757, UINT16_MAX, 8757, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8758, UINT16_MAX, 8758, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8759, UINT16_MAX, 8759, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8760, UINT16_MAX, 8760, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8761, UINT16_MAX, 8761, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8762, UINT16_MAX, 8762, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8763, UINT16_MAX, 8763, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8764, UINT16_MAX, 8764, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8765, UINT16_MAX, 8765, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8766, UINT16_MAX, 8766, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8767, UINT16_MAX, 8767, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8768, UINT16_MAX, 8768, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8769, UINT16_MAX, 8769, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8770, UINT16_MAX, 8770, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8771, UINT16_MAX, 8771, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8772, UINT16_MAX, 8772, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8773, UINT16_MAX, 8773, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8774, UINT16_MAX, 8774, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8775, UINT16_MAX, 8775, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8776, UINT16_MAX, 8776, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8777, UINT16_MAX, 8777, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8778, UINT16_MAX, 8778, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8779, UINT16_MAX, 8779, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8780, UINT16_MAX, 8780, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8781, UINT16_MAX, 8781, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8782, UINT16_MAX, 8782, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8783, UINT16_MAX, 8783, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8784, UINT16_MAX, 8784, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8785, UINT16_MAX, 8785, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8786, UINT16_MAX, 8786, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8787, UINT16_MAX, 8787, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8788, UINT16_MAX, 8788, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8789, UINT16_MAX, 8789, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8790, UINT16_MAX, 8790, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8791, UINT16_MAX, 8791, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8792, UINT16_MAX, 8792, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8793, UINT16_MAX, 8793, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3359, UINT16_MAX, 3359, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8794, UINT16_MAX, 8794, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3360, UINT16_MAX, 3360, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3361, UINT16_MAX, 3361, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3362, UINT16_MAX, 3362, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8795, UINT16_MAX, 8795, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8796, UINT16_MAX, 8796, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3363, UINT16_MAX, 3363, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8797, UINT16_MAX, 8797, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3364, UINT16_MAX, 3364, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8798, UINT16_MAX, 8798, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3365, UINT16_MAX, 3365, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8799, UINT16_MAX, 8799, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1468, UINT16_MAX, 1468, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1486, UINT16_MAX, 1486, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1467, UINT16_MAX, 1467, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1475, UINT16_MAX, 1475, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3366, UINT16_MAX, 3366, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8800, UINT16_MAX, 8800, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3367, UINT16_MAX, 3367, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8801, UINT16_MAX, 8801, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 9, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 2891, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3368, UINT16_MAX, 3368, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3369, UINT16_MAX, 3369, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3370, UINT16_MAX, 3370, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8802, UINT16_MAX, 8802, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3371, UINT16_MAX, 3371, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8803, UINT16_MAX, 8803, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3372, UINT16_MAX, 3372, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8804, UINT16_MAX, 8804, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3373, UINT16_MAX, 3373, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8805, UINT16_MAX, 8805, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3374, UINT16_MAX, 3374, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8806, UINT16_MAX, 8806, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3375, UINT16_MAX, 3375, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8807, UINT16_MAX, 8807, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9273, UINT16_MAX, 9273, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9274, UINT16_MAX, 9274, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9275, UINT16_MAX, 9275, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9276, UINT16_MAX, 9276, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9277, UINT16_MAX, 9277, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9278, UINT16_MAX, 9278, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9279, UINT16_MAX, 9279, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9280, UINT16_MAX, 9280, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9281, UINT16_MAX, 9281, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9282, UINT16_MAX, 9282, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9283, UINT16_MAX, 9283, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9284, UINT16_MAX, 9284, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9285, UINT16_MAX, 9285, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9286, UINT16_MAX, 9286, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9287, UINT16_MAX, 9287, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9288, UINT16_MAX, 9288, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9289, UINT16_MAX, 9289, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9290, UINT16_MAX, 9290, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9291, UINT16_MAX, 9291, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9292, UINT16_MAX, 9292, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9293, UINT16_MAX, 9293, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9294, UINT16_MAX, 9294, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9295, UINT16_MAX, 9295, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9296, UINT16_MAX, 9296, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9297, UINT16_MAX, 9297, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9298, UINT16_MAX, 9298, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9299, UINT16_MAX, 9299, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9300, UINT16_MAX, 9300, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9301, UINT16_MAX, 9301, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9302, UINT16_MAX, 9302, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9303, UINT16_MAX, 9303, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9304, UINT16_MAX, 9304, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9305, UINT16_MAX, 9305, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9306, UINT16_MAX, 9306, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9307, UINT16_MAX, 9307, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9308, UINT16_MAX, 9308, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9309, UINT16_MAX, 9309, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9310, UINT16_MAX, 9310, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9311, UINT16_MAX, 9311, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9312, UINT16_MAX, 9312, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9313, UINT16_MAX, 9313, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9314, UINT16_MAX, 9314, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9315, UINT16_MAX, 9315, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9316, UINT16_MAX, 9316, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9317, UINT16_MAX, 9317, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9318, UINT16_MAX, 9318, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9319, UINT16_MAX, 9319, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3376, UINT16_MAX, 3376, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8808, UINT16_MAX, 8808, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9320, UINT16_MAX, 9320, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3377, UINT16_MAX, 3377, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8809, UINT16_MAX, 8809, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3378, UINT16_MAX, 3378, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8810, UINT16_MAX, 8810, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3379, UINT16_MAX, 3379, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8811, UINT16_MAX, 8811, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9321, UINT16_MAX, 9321, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9322, UINT16_MAX, 9322, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3380, UINT16_MAX, 3380, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8812, UINT16_MAX, 8812, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9323, UINT16_MAX, 9323, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3381, UINT16_MAX, 3381, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8813, UINT16_MAX, 8813, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9324, UINT16_MAX, 9324, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3382, UINT16_MAX, 3382, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8814, UINT16_MAX, 8814, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9325, UINT16_MAX, 9325, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1513, UINT16_MAX, 1513, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1531, UINT16_MAX, 1531, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1512, UINT16_MAX, 1512, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1520, UINT16_MAX, 1520, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9326, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3383, UINT16_MAX, 3383, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8815, UINT16_MAX, 8815, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9327, UINT16_MAX, 9327, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9328, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3384, UINT16_MAX, 3384, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8816, UINT16_MAX, 8816, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9329, UINT16_MAX, 9329, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9330, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9331, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9332, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9333, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9334, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUB, 9, UINT16_MAX, 9335, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 2908, UINT16_MAX, 9336, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3385, UINT16_MAX, 3385, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8817, UINT16_MAX, 8817, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3386, UINT16_MAX, 3386, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8818, UINT16_MAX, 8818, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3387, UINT16_MAX, 3387, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8819, UINT16_MAX, 8819, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9337, UINT16_MAX, 9337, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3388, UINT16_MAX, 3388, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8820, UINT16_MAX, 8820, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9338, UINT16_MAX, 9338, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3389, UINT16_MAX, 3389, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8821, UINT16_MAX, 8821, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9339, UINT16_MAX, 9339, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3390, UINT16_MAX, 3390, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8822, UINT16_MAX, 8822, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9340, UINT16_MAX, 9340, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3391, UINT16_MAX, 3391, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8823, UINT16_MAX, 8823, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9341, UINT16_MAX, 9341, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3392, UINT16_MAX, 3392, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8824, UINT16_MAX, 8824, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9342, UINT16_MAX, 9342, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3393, UINT16_MAX, 3393, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8825, UINT16_MAX, 8825, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9343, UINT16_MAX, 9343, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3394, UINT16_MAX, 3394, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8826, UINT16_MAX, 8826, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9344, UINT16_MAX, 9344, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3395, UINT16_MAX, 3395, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8827, UINT16_MAX, 8827, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9345, UINT16_MAX, 9345, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3396, UINT16_MAX, 3396, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8828, UINT16_MAX, 8828, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9346, UINT16_MAX, 9346, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3397, UINT16_MAX, 3397, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8829, UINT16_MAX, 8829, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9347, UINT16_MAX, 9347, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3398, UINT16_MAX, 3398, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8830, UINT16_MAX, 8830, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9348, UINT16_MAX, 9348, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3399, UINT16_MAX, 3399, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8831, UINT16_MAX, 8831, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9349, UINT16_MAX, 9349, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3400, UINT16_MAX, 3400, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8832, UINT16_MAX, 8832, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9350, UINT16_MAX, 9350, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3401, UINT16_MAX, 3401, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8833, UINT16_MAX, 8833, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9351, UINT16_MAX, 9351, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3402, UINT16_MAX, 3402, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8834, UINT16_MAX, 8834, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9352, UINT16_MAX, 9352, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3403, UINT16_MAX, 3403, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8835, UINT16_MAX, 8835, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9353, UINT16_MAX, 9353, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3404, UINT16_MAX, 3404, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8836, UINT16_MAX, 8836, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9354, UINT16_MAX, 9354, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3405, UINT16_MAX, 3405, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8837, UINT16_MAX, 8837, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9355, UINT16_MAX, 9355, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3406, UINT16_MAX, 3406, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8838, UINT16_MAX, 8838, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9356, UINT16_MAX, 9356, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3407, UINT16_MAX, 3407, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8839, UINT16_MAX, 8839, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9357, UINT16_MAX, 9357, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3408, UINT16_MAX, 3408, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8840, UINT16_MAX, 8840, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3409, UINT16_MAX, 3409, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8841, UINT16_MAX, 8841, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9358, UINT16_MAX, 9358, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3409, UINT16_MAX, 3409, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9359, UINT16_MAX, 9359, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3410, UINT16_MAX, 3410, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8842, UINT16_MAX, 8842, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9360, UINT16_MAX, 9360, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3411, UINT16_MAX, 3411, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8843, UINT16_MAX, 8843, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9361, UINT16_MAX, 9361, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3412, UINT16_MAX, 3412, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8844, UINT16_MAX, 8844, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9362, UINT16_MAX, 9362, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3413, UINT16_MAX, 3413, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8845, UINT16_MAX, 8845, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9363, UINT16_MAX, 9363, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3414, UINT16_MAX, 3414, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8846, UINT16_MAX, 8846, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9364, UINT16_MAX, 9364, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3415, UINT16_MAX, 3415, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8847, UINT16_MAX, 8847, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9365, UINT16_MAX, 9365, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3416, UINT16_MAX, 3416, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8848, UINT16_MAX, 8848, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9366, UINT16_MAX, 9366, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3417, UINT16_MAX, 3417, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8849, UINT16_MAX, 8849, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9367, UINT16_MAX, 9367, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3418, UINT16_MAX, 3418, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8850, UINT16_MAX, 8850, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9368, UINT16_MAX, 9368, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3419, UINT16_MAX, 3419, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8851, UINT16_MAX, 8851, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3420, UINT16_MAX, 3420, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8852, UINT16_MAX, 8852, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3421, UINT16_MAX, 3421, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8853, UINT16_MAX, 8853, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9369, UINT16_MAX, 9369, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3420, UINT16_MAX, 3420, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9370, UINT16_MAX, 9370, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3421, UINT16_MAX, 3421, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9371, UINT16_MAX, 9371, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3422, UINT16_MAX, 3422, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8854, UINT16_MAX, 8854, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8855, UINT16_MAX, 8855, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8856, UINT16_MAX, 8856, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8857, UINT16_MAX, 8857, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8858, UINT16_MAX, 8858, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8859, UINT16_MAX, 8859, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8860, UINT16_MAX, 8860, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8861, UINT16_MAX, 8861, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8862, UINT16_MAX, 8862, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8863, UINT16_MAX, 8863, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8864, UINT16_MAX, 8864, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8865, UINT16_MAX, 8865, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8866, UINT16_MAX, 8866, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8867, UINT16_MAX, 8867, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8868, UINT16_MAX, 8868, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8869, UINT16_MAX, 8869, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8870, UINT16_MAX, 8870, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8871, UINT16_MAX, 8871, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8872, UINT16_MAX, 8872, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8873, UINT16_MAX, 8873, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8874, UINT16_MAX, 8874, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8875, UINT16_MAX, 8875, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8876, UINT16_MAX, 8876, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8877, UINT16_MAX, 8877, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8878, UINT16_MAX, 8878, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8879, UINT16_MAX, 8879, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8880, UINT16_MAX, 8880, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8881, UINT16_MAX, 8881, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8882, UINT16_MAX, 8882, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8883, UINT16_MAX, 8883, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8884, UINT16_MAX, 8884, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8885, UINT16_MAX, 8885, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8886, UINT16_MAX, 8886, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8887, UINT16_MAX, 8887, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8888, UINT16_MAX, 8888, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8889, UINT16_MAX, 8889, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8890, UINT16_MAX, 8890, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8891, UINT16_MAX, 8891, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8892, UINT16_MAX, 8892, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8893, UINT16_MAX, 8893, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8894, UINT16_MAX, 8894, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3423, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3424, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3425, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3426, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3427, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3428, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3429, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3430, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3431, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3432, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3433, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3434, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3435, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3436, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3437, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3438, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3439, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3440, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9372, UINT16_MAX, 9372, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3423, UINT16_MAX, 3423, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9373, UINT16_MAX, 9373, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3424, UINT16_MAX, 3424, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9374, UINT16_MAX, 9374, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3425, UINT16_MAX, 3425, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9375, UINT16_MAX, 9375, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3426, UINT16_MAX, 3426, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9376, UINT16_MAX, 9376, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3427, UINT16_MAX, 3427, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9377, UINT16_MAX, 9377, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3428, UINT16_MAX, 3428, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9378, UINT16_MAX, 9378, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3429, UINT16_MAX, 3429, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9379, UINT16_MAX, 9379, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3430, UINT16_MAX, 3430, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9380, UINT16_MAX, 9380, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3431, UINT16_MAX, 3431, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9381, UINT16_MAX, 9381, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3432, UINT16_MAX, 3432, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9382, UINT16_MAX, 9382, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3433, UINT16_MAX, 3433, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9383, UINT16_MAX, 9383, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3434, UINT16_MAX, 3434, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9384, UINT16_MAX, 9384, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3435, UINT16_MAX, 3435, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9385, UINT16_MAX, 9385, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3436, UINT16_MAX, 3436, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9386, UINT16_MAX, 9386, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9387, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3437, UINT16_MAX, 3437, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9388, UINT16_MAX, 9388, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3438, UINT16_MAX, 3438, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9389, UINT16_MAX, 9389, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 3439, UINT16_MAX, 3439, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9390, UINT16_MAX, 9390, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9391, UINT16_MAX, 9391, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9392, UINT16_MAX, 9392, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9393, UINT16_MAX, 9393, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9394, UINT16_MAX, 9394, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9395, UINT16_MAX, 9395, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9396, UINT16_MAX, 9396, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9397, UINT16_MAX, 9397, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9398, UINT16_MAX, 9398, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9399, UINT16_MAX, 9399, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9400, UINT16_MAX, 9400, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9401, UINT16_MAX, 9401, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9402, UINT16_MAX, 9402, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9403, UINT16_MAX, 9403, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9404, UINT16_MAX, 9404, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9405, UINT16_MAX, 9405, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9406, UINT16_MAX, 9406, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9407, UINT16_MAX, 9407, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9408, UINT16_MAX, 9408, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9409, UINT16_MAX, 9409, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9410, UINT16_MAX, 9410, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9411, UINT16_MAX, 9411, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9412, UINT16_MAX, 9412, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9413, UINT16_MAX, 9413, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9414, UINT16_MAX, 9414, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9415, UINT16_MAX, 9415, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9416, UINT16_MAX, 9416, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9417, UINT16_MAX, 9417, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9418, UINT16_MAX, 9418, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9419, UINT16_MAX, 9419, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9420, UINT16_MAX, 9420, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9421, UINT16_MAX, 9421, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9422, UINT16_MAX, 9422, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9423, UINT16_MAX, 9423, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9424, UINT16_MAX, 9424, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9425, UINT16_MAX, 9425, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9426, UINT16_MAX, 9426, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9427, UINT16_MAX, 9427, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9428, UINT16_MAX, 9428, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9429, UINT16_MAX, 9429, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9430, UINT16_MAX, 9430, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3440, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3441, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3442, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3443, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -9545,144 +10612,153 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3637, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3638, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3639, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3640, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3641, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3642, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3643, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3644, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3645, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3646, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3647, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3648, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3649, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3650, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3651, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3652, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3653, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3654, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3655, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3656, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_ZS, 0, UTF8PROC_BIDI_CLASS_WS, UTF8PROC_DECOMP_TYPE_WIDE, 26, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MN, 218, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 224, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3640, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3449, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3641, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3642, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 3657, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3466, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3658, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3659, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5239, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5174, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11835, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11852, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5177, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11837, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11854, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5180, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11839, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11856, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5183, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11841, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11858, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5186, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11843, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11860, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5189, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11845, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11862, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5192, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11847, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11864, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5195, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11849, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11866, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5198, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11851, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11868, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5201, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11853, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11870, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5204, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11855, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11872, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5207, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11857, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11874, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5210, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11859, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11876, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5213, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11861, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11878, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5216, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11863, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11880, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5219, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11865, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11867, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11882, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11884, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5223, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11869, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11871, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11886, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11888, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5227, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11873, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11875, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11890, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11892, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5231, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11877, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11879, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11894, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11896, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5235, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11881, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11883, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11885, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11898, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11900, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11902, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MN, 8, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32820, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 8, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 32821, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 11887, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 11889, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 11904, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 11906, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5242, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, 0, 11891, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_VERTICAL, 11893, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, 0, 11908, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_VERTICAL, 11910, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5310, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5245, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11895, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11912, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5248, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11897, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11914, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5251, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11899, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11916, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5254, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11901, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11918, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5257, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11903, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11920, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5260, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11905, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11922, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5263, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11907, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11924, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5266, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11909, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11926, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5269, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11911, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11928, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5272, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11913, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11930, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5275, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11915, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11932, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5278, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11917, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11934, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5281, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11919, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11936, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5284, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11921, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11938, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5287, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11923, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11940, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5290, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11925, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11927, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11942, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11944, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5294, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11929, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11931, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11946, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11948, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5298, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11933, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11935, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11950, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11952, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5302, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11937, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11939, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11954, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11956, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5306, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11941, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11943, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11958, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11960, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5313, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5316, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5319, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5322, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11945, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11947, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11949, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11951, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11953, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11962, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11964, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11966, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11968, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 11970, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5325, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, 0, 11955, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_VERTICAL, 11957, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3767, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3768, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3769, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3770, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3771, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3772, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3773, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3774, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3776, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3777, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3779, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3780, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3781, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3782, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3783, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, 0, 11972, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_VERTICAL, 11974, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3784, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3785, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3786, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -9717,7 +10793,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3815, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3816, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3817, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3818, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3818, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3819, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3820, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3821, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -9734,7 +10810,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3832, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3833, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3834, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3835, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3835, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3836, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3837, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3838, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -9760,235 +10836,236 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3858, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3859, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3860, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3426, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3432, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3861, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3862, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3863, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3864, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3865, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3866, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3430, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3867, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3868, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3869, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3870, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3434, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20255, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20258, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20261, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20264, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20267, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20270, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20273, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20276, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20279, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20282, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20285, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20288, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20291, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20294, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28489, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28493, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28497, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28501, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28505, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28509, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28513, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28517, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28521, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28525, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28529, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28533, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28537, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28541, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28545, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 53125, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 44940, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20370, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20373, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20376, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20379, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20382, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20385, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20388, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20391, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20394, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20397, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20400, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20403, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20406, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20409, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20412, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20415, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20418, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20421, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20424, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20427, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20430, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20433, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20436, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20439, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20442, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20445, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20448, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20451, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20454, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20457, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20460, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20463, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20466, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20469, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20472, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20475, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4094, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4095, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3492, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4096, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 20481, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12292, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12294, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12296, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12298, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12300, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12302, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12304, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12306, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12308, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12310, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12312, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12314, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12316, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12318, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12320, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3767, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3770, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3773, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3783, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3861, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3862, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3863, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3864, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3865, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3866, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3867, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3868, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3869, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3870, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3871, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3872, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3873, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3874, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3875, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3876, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 3877, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3443, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3449, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3878, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3879, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3880, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3881, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3882, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3883, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3447, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3884, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3885, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3886, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3887, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3451, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20272, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20275, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20278, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20281, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20284, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20287, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20290, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20293, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20296, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20299, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20302, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20305, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20308, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20311, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28506, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28510, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28514, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28518, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28522, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28526, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28530, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28534, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28538, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28542, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28546, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28550, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28554, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28558, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 28562, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 53142, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 44957, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20387, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20390, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20393, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20396, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20399, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20402, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20405, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20408, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20411, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20414, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20417, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20420, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20423, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20426, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20429, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20432, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20435, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20438, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20441, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20444, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20447, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20450, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20453, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20456, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20459, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20462, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20465, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20468, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20471, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20474, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20477, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20480, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20483, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20486, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20489, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20492, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4111, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4112, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3509, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4113, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 20498, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12309, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12311, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12313, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12315, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12317, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12319, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12321, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12323, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12325, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12327, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12329, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12331, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12333, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12335, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12337, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3784, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3787, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3789, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3790, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3792, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3793, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3794, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3795, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3796, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12322, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12324, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12326, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12328, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12330, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12332, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12334, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12336, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12338, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12340, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12342, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12344, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12346, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12348, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 36926, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 28739, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12359, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3426, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3432, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3861, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3862, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4169, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4170, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4171, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3437, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4172, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3800, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3801, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3804, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3806, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3807, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3809, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3810, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3811, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3812, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3813, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12339, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12341, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12343, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12345, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12347, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12349, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12351, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12353, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12355, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12357, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12359, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12361, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12363, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 12365, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 36943, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 28756, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12376, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3443, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3449, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3499, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3511, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3510, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3500, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3592, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3457, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3497, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4173, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4174, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4175, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4176, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4177, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4178, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4179, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4180, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4181, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4182, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3463, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4183, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4184, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4185, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4186, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4187, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4188, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4189, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3878, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3879, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4186, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4187, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4188, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3454, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4189, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3466, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3516, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3528, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3527, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3517, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3609, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3474, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3514, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4190, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3863, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3864, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3865, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4191, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4192, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4193, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4194, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4195, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4196, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4196, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4197, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4198, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4198, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4199, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3480, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4200, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12393, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12395, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12397, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12399, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12401, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12403, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12405, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12407, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12409, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12411, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12413, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12415, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12417, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12419, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12421, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12423, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12425, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12427, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12429, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12431, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12433, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12435, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12437, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12439, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20633, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20636, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20639, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 12450, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 20644, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 12455, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 20649, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4268, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4269, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4270, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4271, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4272, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4273, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4274, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4275, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4276, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4277, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4278, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4279, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4280, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4281, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4282, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4283, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4284, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4201, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4202, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4203, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4204, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4205, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4206, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4207, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3880, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3881, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 3882, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4208, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4209, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4210, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4211, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4212, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4213, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4214, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4215, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4216, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4217, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12410, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12412, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12414, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12416, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12418, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12420, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12422, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12424, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12426, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12428, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12430, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12432, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12434, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12436, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_CIRCLE, 12438, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12440, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12442, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12444, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12446, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12448, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12450, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12452, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12454, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12456, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20650, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20653, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 20656, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 12467, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 20661, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 12472, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 20666, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4285, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4286, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4287, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10019,509 +11096,582 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4312, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4313, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4314, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28891, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28895, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28899, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20711, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28906, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20718, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20721, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37108, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28921, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20733, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20736, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20739, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28934, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28938, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20750, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20753, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12564, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4315, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4316, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4317, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4318, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4319, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4320, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4321, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4322, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4323, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4324, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4325, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4326, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4327, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4328, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4329, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4330, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 4331, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12524, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28910, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28914, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28918, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20730, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28925, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20737, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20740, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37127, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28940, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20752, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20755, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20758, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28953, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28957, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12577, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37155, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 45352, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37166, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20787, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20769, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20772, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12583, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20777, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28972, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28976, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12596, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37174, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37179, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 28992, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20804, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20807, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20810, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29005, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37201, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29014, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 45371, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37185, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20806, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37193, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37198, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29011, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20823, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20826, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20829, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20832, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12643, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12645, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12647, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12649, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20843, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20846, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37233, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20854, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29049, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37245, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20866, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12677, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12679, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37257, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29070, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37266, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20887, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37274, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12703, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20897, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20900, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20903, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29024, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37220, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29033, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20845, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20848, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20851, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12662, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12664, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12666, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12668, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20862, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20865, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37252, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20873, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29068, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37264, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20885, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12696, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12698, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37276, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29089, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37285, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20906, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20909, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29104, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37293, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12722, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20916, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12727, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20921, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20924, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20927, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29122, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20934, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20937, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20919, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20922, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20925, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20928, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29123, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20935, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12746, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20940, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37327, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29140, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12760, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37338, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12767, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29153, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29157, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20969, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20972, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20975, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29170, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12790, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20984, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29179, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12799, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37377, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20998, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12809, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12811, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12813, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12815, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12817, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12819, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12821, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12823, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12825, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12827, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21021, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21024, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21027, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21030, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21033, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21036, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21039, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21042, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21045, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21048, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21051, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21054, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21057, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21060, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21063, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21066, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12877, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12879, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21073, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12884, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12886, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 12888, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 21082, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 21085, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 12896, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20943, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20946, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29141, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20953, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20956, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20959, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37346, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29159, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12779, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37357, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12786, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29172, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29176, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20988, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20991, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 20994, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29189, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12809, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21003, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29198, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12818, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37396, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21017, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12828, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12830, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12832, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12834, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12836, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12838, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12840, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12842, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12844, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 12846, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21040, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21043, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21046, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21049, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21052, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21055, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21058, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21061, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21064, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21067, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21070, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21073, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21076, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21079, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21082, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21085, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12896, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12898, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12900, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12902, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12904, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29290, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12910, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12912, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12914, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12916, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12918, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12920, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12922, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12924, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21118, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29313, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21092, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12903, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12905, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 12907, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 21101, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 21104, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 12915, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12917, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12919, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12921, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12923, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29309, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12929, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12931, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12933, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12935, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12937, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12939, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12941, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12943, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12945, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21139, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21142, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21145, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21148, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12959, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12961, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12963, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12965, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12967, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12969, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12971, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12973, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12975, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12977, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21171, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21174, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12985, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21179, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21182, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21185, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21137, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29332, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12952, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12954, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12956, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12958, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12960, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12962, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12964, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21158, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21161, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21164, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21167, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12978, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12980, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12982, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12984, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12986, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12988, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12990, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12992, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12994, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 12996, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21190, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21193, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29388, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13008, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21202, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21205, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21208, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21211, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37598, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 45795, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13033, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13035, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13037, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13039, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13041, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13043, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13045, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13047, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13049, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13051, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13053, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13055, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13057, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13059, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13061, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13063, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13065, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13067, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29453, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13073, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13075, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13077, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29463, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21275, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13004, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21198, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21201, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21204, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13015, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21209, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21212, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29407, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13027, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21221, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21224, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21227, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21230, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 37617, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 45814, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13052, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13054, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13056, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13058, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13060, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13062, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13064, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13066, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13068, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13070, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13072, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13074, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13076, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13078, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13080, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13082, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13084, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13086, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13088, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13090, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29472, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13092, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13094, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13096, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13098, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13100, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13102, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13104, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21298, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29482, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21294, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13105, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13107, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13109, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13111, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21305, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21308, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13113, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13115, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13117, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13119, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29505, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13121, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13123, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21317, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13128, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13130, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13132, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13134, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 21328, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 21331, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13142, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13144, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13146, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13148, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13150, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13152, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13154, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13156, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13158, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21352, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21355, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21358, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21361, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21364, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21367, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21370, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21373, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21376, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21379, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21382, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21385, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21388, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21391, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21394, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21397, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21400, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21403, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21406, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21409, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21412, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21415, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 21418, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5037, UINT16_MAX, 5037, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8895, UINT16_MAX, 8895, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5038, UINT16_MAX, 5038, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8896, UINT16_MAX, 8896, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5039, UINT16_MAX, 5039, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8897, UINT16_MAX, 8897, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5040, UINT16_MAX, 5040, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8898, UINT16_MAX, 8898, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5041, UINT16_MAX, 5041, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8899, UINT16_MAX, 8899, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1445, UINT16_MAX, 1445, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8481, UINT16_MAX, 8481, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5042, UINT16_MAX, 5042, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8900, UINT16_MAX, 8900, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5043, UINT16_MAX, 5043, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8901, UINT16_MAX, 8901, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5044, UINT16_MAX, 5044, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8902, UINT16_MAX, 8902, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5045, UINT16_MAX, 5045, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8903, UINT16_MAX, 8903, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5046, UINT16_MAX, 5046, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8904, UINT16_MAX, 8904, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5047, UINT16_MAX, 5047, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8905, UINT16_MAX, 8905, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5048, UINT16_MAX, 5048, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8906, UINT16_MAX, 8906, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5049, UINT16_MAX, 5049, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8907, UINT16_MAX, 8907, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5050, UINT16_MAX, 5050, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8908, UINT16_MAX, 8908, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5051, UINT16_MAX, 5051, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8909, UINT16_MAX, 8909, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5052, UINT16_MAX, 5052, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8910, UINT16_MAX, 8910, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5053, UINT16_MAX, 5053, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8911, UINT16_MAX, 8911, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5054, UINT16_MAX, 5054, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8912, UINT16_MAX, 8912, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5055, UINT16_MAX, 5055, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8913, UINT16_MAX, 8913, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21324, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21327, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13138, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 29524, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 21336, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13147, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13149, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13151, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13153, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 21347, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 21350, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13161, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13163, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13165, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13167, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13169, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13171, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13173, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13175, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13177, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21371, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21374, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21377, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21380, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21383, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21386, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21389, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21392, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21395, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21398, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21401, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21404, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21407, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21410, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21413, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21416, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21419, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21422, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21425, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21428, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21431, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 21434, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SQUARE, 21437, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5056, UINT16_MAX, 5056, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8914, UINT16_MAX, 8914, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9431, UINT16_MAX, 9431, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5057, UINT16_MAX, 5057, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8915, UINT16_MAX, 8915, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5058, UINT16_MAX, 5058, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8916, UINT16_MAX, 8916, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9432, UINT16_MAX, 9432, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5058, UINT16_MAX, 5058, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9433, UINT16_MAX, 9433, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5059, UINT16_MAX, 5059, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8917, UINT16_MAX, 8917, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9434, UINT16_MAX, 9434, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5060, UINT16_MAX, 5060, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8918, UINT16_MAX, 8918, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5061, UINT16_MAX, 5061, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8919, UINT16_MAX, 8919, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9435, UINT16_MAX, 9435, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1445, UINT16_MAX, 1445, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8712, UINT16_MAX, 8712, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5061, UINT16_MAX, 5061, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9436, UINT16_MAX, 9436, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5062, UINT16_MAX, 5062, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8920, UINT16_MAX, 8920, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9437, UINT16_MAX, 9437, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5063, UINT16_MAX, 5063, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8921, UINT16_MAX, 8921, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9438, UINT16_MAX, 9438, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5064, UINT16_MAX, 5064, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8922, UINT16_MAX, 8922, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9439, UINT16_MAX, 9439, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5065, UINT16_MAX, 5065, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8923, UINT16_MAX, 8923, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9440, UINT16_MAX, 9440, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5066, UINT16_MAX, 5066, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8924, UINT16_MAX, 8924, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9441, UINT16_MAX, 9441, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5067, UINT16_MAX, 5067, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8925, UINT16_MAX, 8925, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5068, UINT16_MAX, 5068, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8926, UINT16_MAX, 8926, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9442, UINT16_MAX, 9442, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5068, UINT16_MAX, 5068, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9443, UINT16_MAX, 9443, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5069, UINT16_MAX, 5069, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8927, UINT16_MAX, 8927, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9444, UINT16_MAX, 9444, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5070, UINT16_MAX, 5070, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8928, UINT16_MAX, 8928, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5071, UINT16_MAX, 5071, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8929, UINT16_MAX, 8929, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9445, UINT16_MAX, 9445, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5071, UINT16_MAX, 5071, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9446, UINT16_MAX, 9446, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5072, UINT16_MAX, 5072, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8930, UINT16_MAX, 8930, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 981, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 983, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9447, UINT16_MAX, 9447, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5073, UINT16_MAX, 5073, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8931, UINT16_MAX, 8931, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9448, UINT16_MAX, 9448, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5074, UINT16_MAX, 5074, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8932, UINT16_MAX, 8932, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9449, UINT16_MAX, 9449, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5075, UINT16_MAX, 5075, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8933, UINT16_MAX, 8933, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5076, UINT16_MAX, 5076, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8934, UINT16_MAX, 8934, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9450, UINT16_MAX, 9450, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5076, UINT16_MAX, 5076, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9451, UINT16_MAX, 9451, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5077, UINT16_MAX, 5077, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8935, UINT16_MAX, 8935, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9452, UINT16_MAX, 9452, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5078, UINT16_MAX, 5078, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8936, UINT16_MAX, 8936, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9453, UINT16_MAX, 9453, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5079, UINT16_MAX, 5079, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8937, UINT16_MAX, 8937, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5080, UINT16_MAX, 5080, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8938, UINT16_MAX, 8938, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5081, UINT16_MAX, 5081, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8939, UINT16_MAX, 8939, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5082, UINT16_MAX, 5082, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8940, UINT16_MAX, 8940, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5083, UINT16_MAX, 5083, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8941, UINT16_MAX, 8941, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5084, UINT16_MAX, 5084, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8942, UINT16_MAX, 8942, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5085, UINT16_MAX, 5085, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8943, UINT16_MAX, 8943, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9454, UINT16_MAX, 9454, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5080, UINT16_MAX, 5080, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9455, UINT16_MAX, 9455, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5081, UINT16_MAX, 5081, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9456, UINT16_MAX, 9456, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5082, UINT16_MAX, 5082, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9457, UINT16_MAX, 9457, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5083, UINT16_MAX, 5083, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9458, UINT16_MAX, 9458, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5084, UINT16_MAX, 5084, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9459, UINT16_MAX, 9459, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5085, UINT16_MAX, 5085, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9460, UINT16_MAX, 9460, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5086, UINT16_MAX, 5086, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8944, UINT16_MAX, 8944, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9461, UINT16_MAX, 9461, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5087, UINT16_MAX, 5087, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8945, UINT16_MAX, 8945, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9462, UINT16_MAX, 9462, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5088, UINT16_MAX, 5088, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8946, UINT16_MAX, 8946, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9463, UINT16_MAX, 9463, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5089, UINT16_MAX, 5089, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8947, UINT16_MAX, 8947, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9464, UINT16_MAX, 9464, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5090, UINT16_MAX, 5090, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8948, UINT16_MAX, 8948, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9465, UINT16_MAX, 9465, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5091, UINT16_MAX, 5091, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8949, UINT16_MAX, 8949, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9466, UINT16_MAX, 9466, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 981, UINT16_MAX, 9467, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 983, UINT16_MAX, 9468, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5092, UINT16_MAX, 5092, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8950, UINT16_MAX, 8950, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9469, UINT16_MAX, 9469, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5093, UINT16_MAX, 5093, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8951, UINT16_MAX, 8951, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5094, UINT16_MAX, 5094, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8952, UINT16_MAX, 8952, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9470, UINT16_MAX, 9470, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5094, UINT16_MAX, 5094, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9471, UINT16_MAX, 9471, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5095, UINT16_MAX, 5095, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8953, UINT16_MAX, 8953, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9472, UINT16_MAX, 9472, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5096, UINT16_MAX, 5096, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8954, UINT16_MAX, 8954, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9473, UINT16_MAX, 9473, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5097, UINT16_MAX, 5097, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8955, UINT16_MAX, 8955, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9474, UINT16_MAX, 9474, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5098, UINT16_MAX, 5098, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8956, UINT16_MAX, 8956, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5099, UINT16_MAX, 5099, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8957, UINT16_MAX, 8957, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9475, UINT16_MAX, 9475, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9476, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9477, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5099, UINT16_MAX, 5099, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9478, UINT16_MAX, 9478, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5100, UINT16_MAX, 5100, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8958, UINT16_MAX, 8958, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9479, UINT16_MAX, 9479, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5101, UINT16_MAX, 5101, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8959, UINT16_MAX, 8959, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9480, UINT16_MAX, 9480, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5102, UINT16_MAX, 5102, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8960, UINT16_MAX, 8960, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9481, UINT16_MAX, 9481, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5103, UINT16_MAX, 5103, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8961, UINT16_MAX, 8961, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9482, UINT16_MAX, 9482, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5104, UINT16_MAX, 5104, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8962, UINT16_MAX, 8962, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9483, UINT16_MAX, 9483, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5105, UINT16_MAX, 5105, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8963, UINT16_MAX, 8963, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9484, UINT16_MAX, 9484, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5106, UINT16_MAX, 5106, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8964, UINT16_MAX, 8964, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9485, UINT16_MAX, 9485, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5107, UINT16_MAX, 5107, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8965, UINT16_MAX, 8965, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9486, UINT16_MAX, 9486, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5108, UINT16_MAX, 5108, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8966, UINT16_MAX, 8966, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9487, UINT16_MAX, 9487, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5109, UINT16_MAX, 5109, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8967, UINT16_MAX, 8967, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9488, UINT16_MAX, 9488, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5110, UINT16_MAX, 5110, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8968, UINT16_MAX, 8968, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 5110, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9489, UINT16_MAX, 9489, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5111, UINT16_MAX, 5111, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8969, UINT16_MAX, 8969, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9490, UINT16_MAX, 9490, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5112, UINT16_MAX, 5112, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8970, UINT16_MAX, 8970, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9491, UINT16_MAX, 9491, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5113, UINT16_MAX, 5113, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9492, UINT16_MAX, 9492, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5114, UINT16_MAX, 5114, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8971, UINT16_MAX, 8971, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9493, UINT16_MAX, 9493, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5115, UINT16_MAX, 5115, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8972, UINT16_MAX, 8972, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9494, UINT16_MAX, 9494, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5116, UINT16_MAX, 5116, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8973, UINT16_MAX, 8973, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9495, UINT16_MAX, 9495, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5117, UINT16_MAX, 5117, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8974, UINT16_MAX, 8974, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9496, UINT16_MAX, 9496, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5118, UINT16_MAX, 5118, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8975, UINT16_MAX, 8975, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9497, UINT16_MAX, 9497, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5119, UINT16_MAX, 5119, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8976, UINT16_MAX, 8976, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1479, UINT16_MAX, 1479, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9498, UINT16_MAX, 9498, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5120, UINT16_MAX, 5120, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8977, UINT16_MAX, 8977, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9499, UINT16_MAX, 9499, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5121, UINT16_MAX, 5121, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8978, UINT16_MAX, 8978, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9500, UINT16_MAX, 9500, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5122, UINT16_MAX, 5122, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8979, UINT16_MAX, 8979, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9501, UINT16_MAX, 9501, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5123, UINT16_MAX, 5123, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8980, UINT16_MAX, 8980, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9502, UINT16_MAX, 9502, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5124, UINT16_MAX, 5124, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8981, UINT16_MAX, 8981, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9503, UINT16_MAX, 9503, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5125, UINT16_MAX, 5125, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8982, UINT16_MAX, 8982, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9504, UINT16_MAX, 9504, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5126, UINT16_MAX, 5126, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8983, UINT16_MAX, 8983, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9505, UINT16_MAX, 9505, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5127, UINT16_MAX, 5127, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8984, UINT16_MAX, 8984, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9506, UINT16_MAX, 9506, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5128, UINT16_MAX, 5128, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8985, UINT16_MAX, 8985, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9507, UINT16_MAX, 9507, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5129, UINT16_MAX, 5129, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8986, UINT16_MAX, 8986, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9508, UINT16_MAX, 9508, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 5129, UINT16_MAX, 9509, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9510, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9511, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9512, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9513, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9514, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9515, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9516, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9517, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5130, UINT16_MAX, 5130, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8987, UINT16_MAX, 8987, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9518, UINT16_MAX, 9518, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5131, UINT16_MAX, 5131, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8988, UINT16_MAX, 8988, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 785, UINT16_MAX, 785, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1470, UINT16_MAX, 1470, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1478, UINT16_MAX, 1478, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9519, UINT16_MAX, 9519, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5132, UINT16_MAX, 5132, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1480, UINT16_MAX, 1480, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5133, UINT16_MAX, 5133, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9520, UINT16_MAX, 9520, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5134, UINT16_MAX, 5134, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1482, UINT16_MAX, 1482, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9521, UINT16_MAX, 9521, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5135, UINT16_MAX, 5135, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9522, UINT16_MAX, 9522, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5136, UINT16_MAX, 5136, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8989, UINT16_MAX, 8989, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9523, UINT16_MAX, 9523, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5137, UINT16_MAX, 5137, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8990, UINT16_MAX, 8990, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 5138, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 371, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ET, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 8991, UINT16_MAX, 8991, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 5075, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 5139, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3360, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 5140, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5141, 5141, UINT16_MAX, 5141, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5142, 5142, UINT16_MAX, 5142, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5143, 5143, UINT16_MAX, 5143, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5144, 5144, UINT16_MAX, 5144, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5145, 5145, UINT16_MAX, 5145, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5146, 5146, UINT16_MAX, 5146, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5147, 5147, UINT16_MAX, 5147, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5148, 5148, UINT16_MAX, 5148, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5149, 5149, UINT16_MAX, 5149, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5150, 5150, UINT16_MAX, 5150, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5151, 5151, UINT16_MAX, 5151, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5152, 5152, UINT16_MAX, 5152, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5153, 5153, UINT16_MAX, 5153, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5154, 5154, UINT16_MAX, 5154, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5155, 5155, UINT16_MAX, 5155, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5156, 5156, UINT16_MAX, 5156, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5157, 5157, UINT16_MAX, 5157, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5158, 5158, UINT16_MAX, 5158, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5159, 5159, UINT16_MAX, 5159, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5160, 5160, UINT16_MAX, 5160, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5161, 5161, UINT16_MAX, 5161, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5162, 5162, UINT16_MAX, 5162, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5163, 5163, UINT16_MAX, 5163, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5164, 5164, UINT16_MAX, 5164, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5165, 5165, UINT16_MAX, 5165, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5166, 5166, UINT16_MAX, 5166, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5167, 5167, UINT16_MAX, 5167, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5168, 5168, UINT16_MAX, 5168, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5169, 5169, UINT16_MAX, 5169, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5170, 5170, UINT16_MAX, 5170, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9524, UINT16_MAX, 9524, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5138, UINT16_MAX, 5138, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9525, UINT16_MAX, 9525, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1524, UINT16_MAX, 1524, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9526, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5139, UINT16_MAX, 5139, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9527, UINT16_MAX, 9527, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5140, UINT16_MAX, 5140, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9528, UINT16_MAX, 9528, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9529, UINT16_MAX, 9529, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9530, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5141, UINT16_MAX, 5141, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9531, UINT16_MAX, 9531, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5142, UINT16_MAX, 5142, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9532, UINT16_MAX, 9532, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5143, UINT16_MAX, 5143, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9533, UINT16_MAX, 9533, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5144, UINT16_MAX, 5144, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9534, UINT16_MAX, 9534, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5145, UINT16_MAX, 5145, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9535, UINT16_MAX, 9535, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5146, UINT16_MAX, 5146, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9536, UINT16_MAX, 9536, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5147, UINT16_MAX, 5147, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9537, UINT16_MAX, 9537, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5148, UINT16_MAX, 5148, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9538, UINT16_MAX, 9538, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5149, UINT16_MAX, 5149, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9539, UINT16_MAX, 9539, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5150, UINT16_MAX, 5150, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9540, UINT16_MAX, 9540, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 785, UINT16_MAX, 785, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1515, UINT16_MAX, 1515, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1523, UINT16_MAX, 1523, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5151, UINT16_MAX, 5151, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1525, UINT16_MAX, 1525, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9541, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5152, UINT16_MAX, 5152, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5153, UINT16_MAX, 5153, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1527, UINT16_MAX, 1527, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5154, UINT16_MAX, 5154, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5155, UINT16_MAX, 5155, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9542, UINT16_MAX, 9542, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5156, UINT16_MAX, 5156, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9543, UINT16_MAX, 9543, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5157, UINT16_MAX, 5157, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9544, UINT16_MAX, 9544, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5158, UINT16_MAX, 5158, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9545, UINT16_MAX, 9545, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5159, UINT16_MAX, 5159, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9546, UINT16_MAX, 9546, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5160, UINT16_MAX, 5160, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9547, UINT16_MAX, 9547, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5161, UINT16_MAX, 5161, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9548, UINT16_MAX, 9548, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5162, UINT16_MAX, 5162, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 1536, UINT16_MAX, 1536, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5163, UINT16_MAX, 5163, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5164, UINT16_MAX, 5164, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9549, UINT16_MAX, 9549, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5165, UINT16_MAX, 5165, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9550, UINT16_MAX, 9550, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5166, UINT16_MAX, 5166, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9551, UINT16_MAX, 9551, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 5167, UINT16_MAX, 9552, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 371, UINT16_MAX, 9553, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9554, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9555, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9556, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9557, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9558, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9559, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9560, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9561, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 5168, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9562, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9563, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9564, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9565, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9566, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9567, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9568, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9569, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9570, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9571, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9572, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9573, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9574, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9575, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9576, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9577, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9578, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9579, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9580, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9581, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9582, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9583, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9584, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9585, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9586, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9587, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 5169, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9588, UINT16_MAX, 9588, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9589, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9590, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9591, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9592, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9593, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9594, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9595, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 5094, UINT16_MAX, 9596, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 5168, UINT16_MAX, 9597, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 3377, UINT16_MAX, 9598, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 5169, UINT16_MAX, 9599, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9600, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9601, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9602, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9603, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9604, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9605, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9606, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9607, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9608, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SUPER, 5170, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5171, 5171, UINT16_MAX, 5171, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5172, 5172, UINT16_MAX, 5172, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5173, 5173, UINT16_MAX, 5173, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10572,50 +11722,50 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5218, 5218, UINT16_MAX, 5218, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5219, 5219, UINT16_MAX, 5219, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5220, 5220, UINT16_MAX, 5220, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5221, 5221, UINT16_MAX, 5221, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5222, 5222, UINT16_MAX, 5222, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5223, 5223, UINT16_MAX, 5223, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5224, 5224, UINT16_MAX, 5224, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5225, 5225, UINT16_MAX, 5225, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5226, 5226, UINT16_MAX, 5226, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5227, 5227, UINT16_MAX, 5227, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5228, 5228, UINT16_MAX, 5228, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5229, 5229, UINT16_MAX, 5229, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5230, 5230, UINT16_MAX, 5230, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5231, 5231, UINT16_MAX, 5231, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5232, 5232, UINT16_MAX, 5232, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5233, 5233, UINT16_MAX, 5233, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5234, 5234, UINT16_MAX, 5234, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5235, 5235, UINT16_MAX, 5235, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5236, 5236, UINT16_MAX, 5236, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5237, 5237, UINT16_MAX, 5237, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5238, 5238, UINT16_MAX, 5238, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5239, 5239, UINT16_MAX, 5239, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5240, 5240, UINT16_MAX, 5240, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5241, 5241, UINT16_MAX, 5241, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5242, 5242, UINT16_MAX, 5242, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5243, 5243, UINT16_MAX, 5243, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5244, 5244, UINT16_MAX, 5244, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5245, 5245, UINT16_MAX, 5245, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5246, 5246, UINT16_MAX, 5246, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5247, 5247, UINT16_MAX, 5247, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5248, 5248, UINT16_MAX, 5248, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5249, 5249, UINT16_MAX, 5249, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 5250, 5250, UINT16_MAX, 5250, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_LV}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_LVT}, - {UTF8PROC_CATEGORY_CS, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, - {UTF8PROC_CATEGORY_CO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5221, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5222, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3584, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5223, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5224, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5225, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5226, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3638, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5227, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3592, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5228, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5229, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5230, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5231, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5232, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5233, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5234, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5235, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5236, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5237, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5238, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5239, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5240, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5241, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5242, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5243, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5244, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5245, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5246, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5247, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5248, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5249, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5250, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_CS, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_CO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5251, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5252, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3601, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5253, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5254, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5255, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5256, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3655, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5257, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3609, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5258, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5259, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5260, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10627,7 +11777,6 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5266, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5267, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5268, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3550, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5269, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5270, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5271, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10639,7 +11788,6 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5277, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5278, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5279, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3623, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5280, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5281, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5282, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10659,6 +11807,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5296, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5297, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5298, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3567, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5299, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5300, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5301, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10670,6 +11819,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5307, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5308, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5309, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3640, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5310, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5311, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5312, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10687,7 +11837,6 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5324, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5325, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5326, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3586, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5327, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5328, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5329, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10703,7 +11852,6 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5339, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5340, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5341, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3463, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5342, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5343, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5344, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10712,7 +11860,6 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5347, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5348, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5349, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3444, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5350, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5351, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5352, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10720,6 +11867,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5354, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5355, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5356, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3603, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5357, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5358, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5359, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10735,6 +11883,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5369, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5370, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5371, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3480, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5372, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5373, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5374, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10743,6 +11892,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5377, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5378, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5379, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3461, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5380, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5381, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5382, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10767,7 +11917,6 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5401, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5402, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5403, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3637, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5404, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5405, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5406, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10780,7 +11929,6 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5413, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5414, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5415, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 4170, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5416, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5417, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5418, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10799,11 +11947,11 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5431, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5432, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5433, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3654, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5434, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5435, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5436, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5437, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3591, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5438, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5439, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5440, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10812,12 +11960,12 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5443, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5444, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5445, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 4187, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5446, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5447, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5448, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5449, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5450, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3542, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5451, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5452, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5453, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10834,9 +11982,8 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5464, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5465, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5466, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3569, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5467, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3572, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3608, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5468, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5469, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5470, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10850,8 +11997,8 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5478, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5479, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5480, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3559, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5481, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3549, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5482, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5483, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5484, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10867,14 +12014,15 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5494, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5495, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5496, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3586, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5497, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3589, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5498, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5499, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5500, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5501, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5502, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5503, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3470, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5504, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5505, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5506, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10883,6 +12031,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5509, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5510, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5511, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3566, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5512, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5513, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5514, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10890,12 +12039,10 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5516, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5517, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5518, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 4175, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5519, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5520, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5521, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5522, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 4179, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5523, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5524, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5525, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10907,6 +12054,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5531, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5532, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5533, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3487, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5534, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5535, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5536, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10920,11 +12068,14 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5544, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5545, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5546, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5547, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5548, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 4192, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5549, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5550, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5551, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5552, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 4196, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5553, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5554, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5555, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10949,10 +12100,8 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5574, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5575, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5576, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5577, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5578, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5579, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3503, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5580, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5581, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5582, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10983,6 +12132,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5607, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5608, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5609, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3520, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5610, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5611, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5612, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -10991,56 +12141,71 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5615, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5616, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5617, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5618, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5619, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5620, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5621, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5622, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5623, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5624, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5625, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5626, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5627, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5628, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5629, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5630, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5631, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5632, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5633, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13826, 13826, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13828, 13828, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13830, 13830, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 22024, 22024, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 22027, 22027, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13838, 13840, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13840, 13840, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13842, 13842, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13844, 13844, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13846, 13846, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13848, 13848, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13850, 13850, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13852, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5634, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5635, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5636, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5637, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5638, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5639, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5640, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5641, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5642, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5643, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5644, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5645, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5646, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5647, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5649, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5651, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5653, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5654, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5655, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5656, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5658, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5660, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5662, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 5663, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13856, 13856, 9609, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13858, 13858, 9610, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13860, 13860, 9611, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 22054, 22054, 9612, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 22057, 22057, 9613, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13868, 13870, 9614, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13870, 13870, 9615, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13872, 13872, 9616, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13874, 13874, 9617, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13876, 13876, 9618, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13878, 13878, 9619, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 13880, 13880, 9620, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13882, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MN, 26, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13854, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 5664, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 2822, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 2825, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 5665, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 5666, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 5667, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 5668, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 5669, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 5670, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_FONT, 2782, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13863, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13865, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13867, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13869, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13871, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13873, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13875, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13877, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13879, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13881, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13883, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13885, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13887, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13889, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13891, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13884, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 5694, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 2839, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 2842, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 5695, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 5696, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 5697, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 5698, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 5699, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_FONT, 5700, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_FONT, 2799, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13893, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13895, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13897, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -11058,166 +12223,166 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13921, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13923, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13925, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_COMPAT, 13927, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5737, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5737, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5738, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5738, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5738, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5738, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5739, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5739, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5739, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5739, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5740, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5740, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5740, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5740, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5741, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5741, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5741, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5741, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5742, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5742, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5742, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5742, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5743, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5743, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5743, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5743, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5744, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5744, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5744, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5744, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5745, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5745, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5745, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5745, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5746, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5746, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5746, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5746, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5747, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5747, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5747, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5747, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5748, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5748, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5748, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5748, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5749, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5749, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5749, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5749, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5750, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5750, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5751, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5751, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5752, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5752, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5753, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5753, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5754, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5754, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5755, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5755, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5756, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5756, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5756, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5756, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5757, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5757, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5757, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5757, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5758, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5758, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5758, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5758, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5759, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5759, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5759, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5759, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5760, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5760, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5761, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5761, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5761, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5761, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5762, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5762, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5763, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5763, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5763, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5763, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5764, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5764, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5764, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5764, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5765, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5765, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5766, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5766, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13927, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13929, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13931, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13933, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13935, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13937, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13939, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13941, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13943, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13945, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13947, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13949, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13951, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13953, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, 0, 13955, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_R, UTF8PROC_DECOMP_TYPE_COMPAT, 13957, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5767, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5767, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5767, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5767, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5768, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5768, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5768, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5768, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5769, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5769, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5769, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5769, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5770, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5770, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5770, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5770, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5771, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5771, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5771, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5771, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5772, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5772, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5772, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5772, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5773, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5773, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5773, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5773, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5774, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5774, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5774, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5774, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5776, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5776, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5776, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5776, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13969, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 13969, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13971, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 13971, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13973, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 13973, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13975, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 13975, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13977, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 13977, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13979, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 13979, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13981, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 13981, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 13981, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13983, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 13983, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 13983, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5777, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5777, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5777, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5777, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5779, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5779, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5779, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5779, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5780, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5780, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5781, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5781, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5782, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5782, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5783, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5783, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5784, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5784, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5785, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5785, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5786, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5786, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5786, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5786, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5787, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5787, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5787, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5787, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5788, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5788, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5788, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5788, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5789, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5789, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5789, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5789, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5790, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5790, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5791, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5791, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5791, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5791, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5792, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5792, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5793, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5793, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5793, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5793, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13986, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13988, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13990, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13992, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13994, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13996, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13998, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14000, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14002, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14004, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14006, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14008, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14010, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14012, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14014, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5794, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5794, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5794, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5794, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5795, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5795, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5796, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5796, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5797, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5797, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5797, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5797, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5798, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5798, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5799, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5799, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5800, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5800, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5801, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5802, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5802, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5803, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5803, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5804, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5804, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5805, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5805, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5805, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5805, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5806, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5806, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 13999, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 13999, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14001, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14001, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14003, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14003, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14005, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14005, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14007, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14007, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14009, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14009, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14011, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14011, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14011, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14013, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14013, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14013, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5823, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5823, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 5823, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 5823, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14016, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14018, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14020, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -11233,13 +12398,13 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14040, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14042, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14044, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14046, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14046, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14048, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14050, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14050, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14052, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14054, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14056, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14058, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14058, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14060, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14062, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14064, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -11263,8 +12428,8 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14100, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14102, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14104, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14106, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14108, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14106, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14108, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14110, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14112, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14114, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -11296,171 +12461,171 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14166, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14168, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14170, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22364, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22367, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22370, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22373, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22376, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22379, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14190, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14192, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 13990, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14194, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 13992, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14196, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14198, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14000, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14200, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14002, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14004, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14202, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14204, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14012, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14206, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14014, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14016, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14208, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14210, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14020, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14212, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14022, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14024, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14082, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14084, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14090, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14092, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14094, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14102, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14104, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14106, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14108, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14116, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14118, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14120, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14214, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14128, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14216, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14218, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14140, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14172, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14174, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14176, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14178, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14180, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14182, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14184, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14186, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14188, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14190, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14192, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14194, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14196, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14198, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14200, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22394, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22397, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22400, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22403, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22406, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22409, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14220, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14142, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14144, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14170, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14222, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14020, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14224, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14160, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14022, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14226, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14162, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14164, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 13986, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 13988, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14228, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 13990, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14230, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 13994, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 13996, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 13998, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14000, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14232, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14006, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14008, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14010, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14012, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14234, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14228, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14030, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14230, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14032, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14034, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14232, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14234, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14042, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14236, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14044, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14046, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14238, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14240, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14050, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14242, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14052, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14054, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14112, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14114, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14120, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14122, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14124, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14132, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14134, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14136, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14138, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14146, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14148, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14150, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14244, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14158, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14246, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14248, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14170, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14250, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14172, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14174, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14200, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14252, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14254, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14190, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14256, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14192, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14194, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14016, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14018, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14258, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14020, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14260, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14024, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14026, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14028, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14030, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14032, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14034, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14262, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14036, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14038, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14040, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14042, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14044, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14046, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14048, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14236, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14050, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14052, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14054, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14056, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14058, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14040, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14042, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14264, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14050, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14056, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14058, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14060, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14062, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14064, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14066, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14068, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14070, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14072, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14074, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14076, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14078, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14266, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14080, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14082, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14084, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14086, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14088, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14090, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14094, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14096, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14098, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14100, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14102, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14104, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14106, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14108, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14110, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14112, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14114, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14116, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14238, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14122, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14124, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14118, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14126, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14128, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14130, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14132, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14134, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14136, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14138, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14140, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14240, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14142, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14144, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14146, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14148, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14242, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14268, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14152, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14154, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14156, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14158, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14160, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14244, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 13990, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14230, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14000, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14232, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14012, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14234, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14164, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14166, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14168, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14170, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14270, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14176, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14178, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14272, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14184, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14186, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14188, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14190, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14274, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14020, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14246, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14046, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14248, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14250, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14252, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14102, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14104, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14116, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14140, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14240, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14160, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14244, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 22446, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 22449, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 22452, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14263, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14265, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14267, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14269, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14271, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14273, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14275, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14277, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14279, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14281, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14283, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14285, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14287, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14289, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14291, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14260, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14030, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14262, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14042, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14264, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14050, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14276, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14076, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14278, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14280, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14282, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14132, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14134, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14146, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14170, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14270, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14190, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14274, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 22476, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 22479, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 22482, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14293, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14295, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14297, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -11469,26 +12634,26 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14303, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14305, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14307, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14250, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14309, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14311, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14313, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14315, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14263, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14265, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14267, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14269, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14271, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14273, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14275, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14277, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14279, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14281, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14283, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14285, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14287, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14289, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14291, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14317, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14319, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14321, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14323, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14325, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14327, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14329, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14331, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14333, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14335, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14337, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14280, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14339, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14341, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14343, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14345, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14293, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14295, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14297, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -11497,487 +12662,486 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14303, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14305, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14307, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14250, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14309, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14311, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14313, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14315, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14303, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14305, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14307, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14250, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14248, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14252, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14062, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14040, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14042, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14044, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14303, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14305, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14307, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14062, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14064, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14317, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14317, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22511, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22514, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22514, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22517, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22520, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22523, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22526, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22529, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22532, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22532, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22535, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22538, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22541, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22544, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22547, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22550, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22550, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22553, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22556, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22556, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22559, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22559, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22562, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22565, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22565, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22568, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22571, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22571, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22574, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22574, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22577, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22580, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22580, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22583, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22583, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22586, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22589, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22592, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22595, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22595, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22598, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22601, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22604, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22607, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22610, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22610, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22613, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22616, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22619, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22622, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22625, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22628, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22628, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22631, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22631, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22634, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22634, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22637, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22640, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22643, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22646, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22649, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22652, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22655, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22658, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22661, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22664, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22667, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22670, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22673, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22673, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22676, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22679, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22682, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22685, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22685, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22688, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22691, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22694, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22697, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22700, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22703, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22706, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22709, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22712, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22715, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22718, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22721, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22724, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22727, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22730, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22733, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22736, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22739, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22742, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22745, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22748, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22751, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22613, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22619, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22754, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22757, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22760, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22763, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22766, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22769, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22766, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22760, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22772, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22781, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22784, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22769, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22592, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22562, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22787, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22790, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22793, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22796, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 30991, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 30995, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 30999, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 31003, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 31007, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 31011, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 31015, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22827, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 63790, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 63809, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 31050, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6478, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6479, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6480, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6481, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14319, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14321, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14323, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14325, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14327, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14329, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14331, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14333, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14335, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14337, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14280, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14339, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14341, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14343, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14345, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14333, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14335, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14337, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14280, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14278, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14282, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 14092, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14070, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14072, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14074, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14333, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14335, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14337, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14092, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14094, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14347, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14347, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22541, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22544, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22544, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22547, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22550, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22553, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22556, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22559, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22562, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22562, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22565, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22568, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22571, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22574, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22577, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22580, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22580, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22583, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22586, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22586, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22589, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22589, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22592, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22595, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22595, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22598, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22601, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22601, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22604, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22604, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22607, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22610, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22610, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22613, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22613, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22616, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22619, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22622, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22625, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22625, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22628, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22631, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22634, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22637, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22640, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22640, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22643, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22646, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22649, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22652, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22655, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22658, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22658, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22661, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22661, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22664, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22664, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22667, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22670, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22673, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22676, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22679, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22682, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22685, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22688, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22691, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22694, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22697, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22700, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22703, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22703, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22706, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22709, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22712, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22715, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22715, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22718, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22721, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22724, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22727, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22730, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22733, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22736, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22739, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22742, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22745, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22748, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22751, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22754, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22757, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22760, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22763, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22766, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22769, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22772, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22781, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22643, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22649, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22784, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22787, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22790, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22793, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22796, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22799, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22796, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22790, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22802, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22805, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22808, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22811, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22814, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22799, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22622, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 22592, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22817, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 22820, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22823, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22826, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 31021, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 31025, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 31029, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 31033, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 31037, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 31041, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 31045, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 22857, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 63820, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 63839, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 31080, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6508, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6509, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6510, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6511, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 814, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6482, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6483, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6484, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6485, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6486, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6487, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6488, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6489, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PC, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6490, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 2785, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 2786, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6491, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6492, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6493, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6494, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6495, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6496, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6497, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6498, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 3046, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 3047, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6499, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6500, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6501, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6502, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6503, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6504, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 6505, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PC, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 6490, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_CS, UTF8PROC_DECOMP_TYPE_SMALL, 6478, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6479, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_CS, UTF8PROC_DECOMP_TYPE_SMALL, 2745, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6512, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6513, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6514, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6515, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6516, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6517, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6518, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6519, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PC, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6520, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 2802, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 2803, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6521, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6522, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6523, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6524, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6525, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6526, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6527, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6528, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 3063, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 3064, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6529, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6530, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6531, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6532, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6533, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_VERTICAL, 6534, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 6535, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PC, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_COMPAT, 6520, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_CS, UTF8PROC_DECOMP_TYPE_SMALL, 6508, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6509, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_CS, UTF8PROC_DECOMP_TYPE_SMALL, 2762, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 814, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_CS, UTF8PROC_DECOMP_TYPE_SMALL, 6481, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6483, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6482, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6488, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 2785, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 2786, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6491, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6492, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6493, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6494, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_SMALL, 6506, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6507, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6508, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_SMALL, 2782, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_SMALL, 6509, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6510, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6511, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 2784, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_CS, UTF8PROC_DECOMP_TYPE_SMALL, 6511, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6513, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6512, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_SMALL, 6513, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_SMALL, 6514, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6515, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14708, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14710, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14712, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14714, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14716, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14718, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14720, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14722, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14724, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14726, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14728, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14730, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14732, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14734, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6544, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6545, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6545, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6546, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6546, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6547, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6547, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6548, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6548, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6549, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6549, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6549, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6549, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6550, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6550, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6551, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6551, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6551, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6551, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6552, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6552, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6553, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6553, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6553, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6553, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6554, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6554, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6554, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6554, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6555, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6555, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6555, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6555, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6556, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6556, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6556, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6556, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6557, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6557, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6557, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6557, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6558, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6558, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6559, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6559, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6560, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6560, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6561, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6561, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6562, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6562, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6562, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6562, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6563, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6563, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6563, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6563, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6564, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6564, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6564, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6564, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6565, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6565, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6565, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6565, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6566, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6566, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6566, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6566, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6567, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6567, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6567, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6567, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6568, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6568, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6568, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6568, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6569, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6569, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6569, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6569, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6570, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6570, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6570, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6570, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6571, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6571, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6571, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6571, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6572, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6572, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6572, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6572, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6573, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6573, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6573, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6573, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6518, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 2802, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 2803, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6521, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6522, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6523, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6524, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_SMALL, 6536, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6537, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6538, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_SMALL, 2799, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_SMALL, 6539, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6540, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6541, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 2801, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6542, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_SMALL, 6543, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_SMALL, 6544, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SMALL, 6545, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14738, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14740, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14742, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14744, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14746, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14748, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14750, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14752, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14754, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14756, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14758, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14760, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14762, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 14764, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6574, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6574, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6574, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6574, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6575, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6575, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6575, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6575, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6576, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6576, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6576, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6576, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6577, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6577, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5776, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5776, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6578, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6578, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6578, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6578, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14771, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14771, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14773, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14773, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14777, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14777, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6482, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6587, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_WIDE, 6506, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_WIDE, 6513, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_WIDE, 6514, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6507, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6588, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 2785, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 2786, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6508, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_WIDE, 2782, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_CS, UTF8PROC_DECOMP_TYPE_WIDE, 6478, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_WIDE, 6509, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_CS, UTF8PROC_DECOMP_TYPE_WIDE, 2745, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_CS, UTF8PROC_DECOMP_TYPE_WIDE, 6589, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 2775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6579, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6579, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6579, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6579, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6580, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6580, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6581, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6581, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6581, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6581, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6582, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6582, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6583, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6583, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6583, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6583, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6584, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6584, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6584, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6584, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6585, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6585, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6585, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6585, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6586, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6586, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6586, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6586, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6587, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6587, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6587, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6587, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6588, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6588, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6589, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6589, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6590, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6590, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6591, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6591, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6592, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6592, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6592, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6592, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6593, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6593, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6593, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6593, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6594, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6594, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6594, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6594, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6595, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6595, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6595, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6595, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6596, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6596, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6596, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6596, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6597, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6597, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6597, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6597, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6598, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6598, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6598, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6598, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6599, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6599, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6599, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6599, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6600, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6600, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6600, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6600, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6601, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6601, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6601, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6601, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6602, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6602, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6602, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6602, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6603, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6603, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6603, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6603, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6604, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6604, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6604, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6604, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6605, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6605, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6605, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6605, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6606, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6606, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6606, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6606, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6607, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6607, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 5806, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 5806, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 6608, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 6608, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_INITIAL, 6608, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_MEDIAL, 6608, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14801, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14801, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14803, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14803, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14805, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14805, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_ISOLATED, 14807, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FINAL, 14807, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6512, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6617, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_WIDE, 6536, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_WIDE, 6543, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_WIDE, 6544, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6537, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6618, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 2802, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 2803, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6538, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_WIDE, 2799, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_CS, UTF8PROC_DECOMP_TYPE_WIDE, 6508, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PD, 0, UTF8PROC_BIDI_CLASS_ES, UTF8PROC_DECOMP_TYPE_WIDE, 6539, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_CS, UTF8PROC_DECOMP_TYPE_WIDE, 2762, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_CS, UTF8PROC_DECOMP_TYPE_WIDE, 6619, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 2792, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 38, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 31, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 32, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 2776, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 2777, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 2778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 2779, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 2780, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 2781, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_CS, UTF8PROC_DECOMP_TYPE_WIDE, 6481, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 2793, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 2794, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 2795, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 2796, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 2797, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_WIDE, 2798, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_CS, UTF8PROC_DECOMP_TYPE_WIDE, 6511, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 814, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6510, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 2784, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6511, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6483, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6515, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1446, 6590, UINT16_MAX, 6590, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1448, 6591, UINT16_MAX, 6591, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 2795, 6592, UINT16_MAX, 6592, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1449, 6593, UINT16_MAX, 6593, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1450, 6594, UINT16_MAX, 6594, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 2820, 6595, UINT16_MAX, 6595, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1452, 6596, UINT16_MAX, 6596, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1453, 6597, UINT16_MAX, 6597, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1454, 6598, UINT16_MAX, 6598, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1455, 6599, UINT16_MAX, 6599, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1456, 6600, UINT16_MAX, 6600, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1457, 6601, UINT16_MAX, 6601, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1458, 6602, UINT16_MAX, 6602, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1459, 6603, UINT16_MAX, 6603, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1460, 6604, UINT16_MAX, 6604, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1462, 6605, UINT16_MAX, 6605, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 2809, 6606, UINT16_MAX, 6606, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1463, 6607, UINT16_MAX, 6607, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 3288, 6608, UINT16_MAX, 6608, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1464, 6609, UINT16_MAX, 6609, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1465, 6610, UINT16_MAX, 6610, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 2891, 6611, UINT16_MAX, 6611, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1466, 6612, UINT16_MAX, 6612, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 2908, 6613, UINT16_MAX, 6613, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 3295, 6614, UINT16_MAX, 6614, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 2817, 6615, UINT16_MAX, 6615, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6503, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6512, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6504, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6616, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PC, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6490, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 2704, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 0, UINT16_MAX, 8992, UINT16_MAX, 8992, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1, UINT16_MAX, 8993, UINT16_MAX, 8993, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 2, UINT16_MAX, 8994, UINT16_MAX, 8994, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 3, UINT16_MAX, 8995, UINT16_MAX, 8995, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 4, UINT16_MAX, 8996, UINT16_MAX, 8996, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 5, UINT16_MAX, 8997, UINT16_MAX, 8997, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 6, UINT16_MAX, 8998, UINT16_MAX, 8998, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 7, UINT16_MAX, 8999, UINT16_MAX, 8999, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 8, UINT16_MAX, 9000, UINT16_MAX, 9000, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 9, UINT16_MAX, 9001, UINT16_MAX, 9001, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 10, UINT16_MAX, 9002, UINT16_MAX, 9002, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 11, UINT16_MAX, 9003, UINT16_MAX, 9003, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 12, UINT16_MAX, 9004, UINT16_MAX, 9004, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 13, UINT16_MAX, 9005, UINT16_MAX, 9005, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 14, UINT16_MAX, 9006, UINT16_MAX, 9006, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 15, UINT16_MAX, 9007, UINT16_MAX, 9007, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 16, UINT16_MAX, 9008, UINT16_MAX, 9008, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 17, UINT16_MAX, 9009, UINT16_MAX, 9009, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 18, UINT16_MAX, 9010, UINT16_MAX, 9010, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 19, UINT16_MAX, 9011, UINT16_MAX, 9011, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 20, UINT16_MAX, 9012, UINT16_MAX, 9012, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 21, UINT16_MAX, 9013, UINT16_MAX, 9013, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 22, UINT16_MAX, 9014, UINT16_MAX, 9014, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 23, UINT16_MAX, 9015, UINT16_MAX, 9015, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 24, UINT16_MAX, 9016, UINT16_MAX, 9016, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 25, UINT16_MAX, 9017, UINT16_MAX, 9017, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6491, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6617, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6492, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6618, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6619, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6620, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6480, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6499, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6500, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6479, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6621, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4314, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6622, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6623, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6624, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6625, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6626, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6627, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6628, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6629, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6630, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6631, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4268, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4269, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4270, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4271, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4272, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4273, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4274, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4275, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4276, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4277, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4278, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4279, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4280, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4281, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4282, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4283, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4284, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6540, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 2801, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6541, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6513, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6545, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1491, 6620, UINT16_MAX, 6620, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1493, 6621, UINT16_MAX, 6621, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 2812, 6622, UINT16_MAX, 6622, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1494, 6623, UINT16_MAX, 6623, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1495, 6624, UINT16_MAX, 6624, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 2837, 6625, UINT16_MAX, 6625, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1497, 6626, UINT16_MAX, 6626, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1498, 6627, UINT16_MAX, 6627, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1499, 6628, UINT16_MAX, 6628, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1500, 6629, UINT16_MAX, 6629, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1501, 6630, UINT16_MAX, 6630, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1502, 6631, UINT16_MAX, 6631, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1503, 6632, UINT16_MAX, 6632, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1504, 6633, UINT16_MAX, 6633, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1505, 6634, UINT16_MAX, 6634, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1507, 6635, UINT16_MAX, 6635, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 2826, 6636, UINT16_MAX, 6636, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1508, 6637, UINT16_MAX, 6637, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 3305, 6638, UINT16_MAX, 6638, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1509, 6639, UINT16_MAX, 6639, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1510, 6640, UINT16_MAX, 6640, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 2908, 6641, UINT16_MAX, 6641, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1511, 6642, UINT16_MAX, 6642, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 2925, 6643, UINT16_MAX, 6643, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 3312, 6644, UINT16_MAX, 6644, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 2834, 6645, UINT16_MAX, 6645, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6533, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6542, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6534, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6646, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PC, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6520, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 2722, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 0, UINT16_MAX, 9621, UINT16_MAX, 9621, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 1, UINT16_MAX, 9622, UINT16_MAX, 9622, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 2, UINT16_MAX, 9623, UINT16_MAX, 9623, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 3, UINT16_MAX, 9624, UINT16_MAX, 9624, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 4, UINT16_MAX, 9625, UINT16_MAX, 9625, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 5, UINT16_MAX, 9626, UINT16_MAX, 9626, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 6, UINT16_MAX, 9627, UINT16_MAX, 9627, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 7, UINT16_MAX, 9628, UINT16_MAX, 9628, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 8, UINT16_MAX, 9629, UINT16_MAX, 9629, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 9, UINT16_MAX, 9630, UINT16_MAX, 9630, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 10, UINT16_MAX, 9631, UINT16_MAX, 9631, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 11, UINT16_MAX, 9632, UINT16_MAX, 9632, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 12, UINT16_MAX, 9633, UINT16_MAX, 9633, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 13, UINT16_MAX, 9634, UINT16_MAX, 9634, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 14, UINT16_MAX, 9635, UINT16_MAX, 9635, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 15, UINT16_MAX, 9636, UINT16_MAX, 9636, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 16, UINT16_MAX, 9637, UINT16_MAX, 9637, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 17, UINT16_MAX, 9638, UINT16_MAX, 9638, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 18, UINT16_MAX, 9639, UINT16_MAX, 9639, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 19, UINT16_MAX, 9640, UINT16_MAX, 9640, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 20, UINT16_MAX, 9641, UINT16_MAX, 9641, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 21, UINT16_MAX, 9642, UINT16_MAX, 9642, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 22, UINT16_MAX, 9643, UINT16_MAX, 9643, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 23, UINT16_MAX, 9644, UINT16_MAX, 9644, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 24, UINT16_MAX, 9645, UINT16_MAX, 9645, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_WIDE, 25, UINT16_MAX, 9646, UINT16_MAX, 9646, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6521, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6647, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6522, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6648, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6649, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6650, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6510, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PS, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6529, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PE, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6530, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6509, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_PO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6651, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4331, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6652, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6653, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6654, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6655, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6656, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6657, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6658, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6659, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6660, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6661, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4285, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4286, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4287, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -12005,40 +13169,27 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4309, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4310, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4311, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6632, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6633, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6634, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6635, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6636, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6637, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6638, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6639, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6640, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6641, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6642, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6643, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6644, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6645, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6646, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6647, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6648, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6649, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6650, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6651, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6652, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6653, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6654, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6655, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6656, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6657, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6658, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6659, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6660, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6661, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4312, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4313, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4314, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4315, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4316, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4317, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4318, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4319, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4320, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4321, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4322, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4323, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4324, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4325, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4326, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4327, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 4328, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6662, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6663, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6664, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6665, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6663, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTEND}, + {UTF8PROC_CATEGORY_LM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6664, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTEND}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6665, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, true, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6666, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6667, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6668, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -12060,40 +13211,53 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6684, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6685, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6686, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_WIDE, 6687, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_WIDE, 6688, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6689, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6690, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6691, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_WIDE, 6692, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_WIDE, 6693, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6694, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6695, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6696, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6697, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6698, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6699, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6700, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6687, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6688, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6689, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6690, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6691, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6692, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6693, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6694, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6695, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6696, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6697, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6698, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6699, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6700, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6701, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6702, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6703, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6704, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6705, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6706, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6707, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6708, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6709, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6710, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6711, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6712, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6713, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6714, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6715, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_NARROW, 6716, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_WIDE, 6717, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_WIDE, 6718, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6719, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6720, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_WIDE, 6721, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_WIDE, 6722, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SC, 0, UTF8PROC_BIDI_CLASS_ET, UTF8PROC_DECOMP_TYPE_WIDE, 6723, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6724, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6725, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6726, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6727, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6728, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6729, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_NARROW, 6730, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NL, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6701, UINT16_MAX, 6701, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6703, UINT16_MAX, 6703, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6705, UINT16_MAX, 6705, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6707, UINT16_MAX, 6707, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6709, UINT16_MAX, 6709, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6711, UINT16_MAX, 6711, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6713, UINT16_MAX, 6713, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6715, UINT16_MAX, 6715, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6717, UINT16_MAX, 6717, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6719, UINT16_MAX, 6719, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6721, UINT16_MAX, 6721, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6723, UINT16_MAX, 6723, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6725, UINT16_MAX, 6725, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6727, UINT16_MAX, 6727, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6729, UINT16_MAX, 6729, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6731, UINT16_MAX, 6731, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6733, UINT16_MAX, 6733, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6735, UINT16_MAX, 6735, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -12119,46 +13283,6 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6775, UINT16_MAX, 6775, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6777, UINT16_MAX, 6777, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6779, UINT16_MAX, 6779, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9018, UINT16_MAX, 9018, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9020, UINT16_MAX, 9020, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9022, UINT16_MAX, 9022, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9024, UINT16_MAX, 9024, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9026, UINT16_MAX, 9026, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9028, UINT16_MAX, 9028, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9030, UINT16_MAX, 9030, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9032, UINT16_MAX, 9032, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9034, UINT16_MAX, 9034, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9036, UINT16_MAX, 9036, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9038, UINT16_MAX, 9038, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9040, UINT16_MAX, 9040, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9042, UINT16_MAX, 9042, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9044, UINT16_MAX, 9044, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9046, UINT16_MAX, 9046, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9048, UINT16_MAX, 9048, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9050, UINT16_MAX, 9050, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9052, UINT16_MAX, 9052, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9054, UINT16_MAX, 9054, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9056, UINT16_MAX, 9056, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9058, UINT16_MAX, 9058, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9060, UINT16_MAX, 9060, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9062, UINT16_MAX, 9062, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9064, UINT16_MAX, 9064, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9066, UINT16_MAX, 9066, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9068, UINT16_MAX, 9068, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9070, UINT16_MAX, 9070, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9072, UINT16_MAX, 9072, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9074, UINT16_MAX, 9074, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9076, UINT16_MAX, 9076, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9078, UINT16_MAX, 9078, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9080, UINT16_MAX, 9080, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9082, UINT16_MAX, 9082, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9084, UINT16_MAX, 9084, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9086, UINT16_MAX, 9086, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9088, UINT16_MAX, 9088, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9090, UINT16_MAX, 9090, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9092, UINT16_MAX, 9092, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9094, UINT16_MAX, 9094, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9096, UINT16_MAX, 9096, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6781, UINT16_MAX, 6781, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6783, UINT16_MAX, 6783, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6785, UINT16_MAX, 6785, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -12174,6 +13298,46 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6805, UINT16_MAX, 6805, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6807, UINT16_MAX, 6807, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6809, UINT16_MAX, 6809, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9647, UINT16_MAX, 9647, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9649, UINT16_MAX, 9649, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9651, UINT16_MAX, 9651, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9653, UINT16_MAX, 9653, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9655, UINT16_MAX, 9655, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9657, UINT16_MAX, 9657, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9659, UINT16_MAX, 9659, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9661, UINT16_MAX, 9661, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9663, UINT16_MAX, 9663, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9665, UINT16_MAX, 9665, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9667, UINT16_MAX, 9667, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9669, UINT16_MAX, 9669, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9671, UINT16_MAX, 9671, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9673, UINT16_MAX, 9673, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9675, UINT16_MAX, 9675, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9677, UINT16_MAX, 9677, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9679, UINT16_MAX, 9679, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9681, UINT16_MAX, 9681, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9683, UINT16_MAX, 9683, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9685, UINT16_MAX, 9685, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9687, UINT16_MAX, 9687, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9689, UINT16_MAX, 9689, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9691, UINT16_MAX, 9691, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9693, UINT16_MAX, 9693, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9695, UINT16_MAX, 9695, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9697, UINT16_MAX, 9697, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9699, UINT16_MAX, 9699, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9701, UINT16_MAX, 9701, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9703, UINT16_MAX, 9703, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9705, UINT16_MAX, 9705, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9707, UINT16_MAX, 9707, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9709, UINT16_MAX, 9709, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9711, UINT16_MAX, 9711, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9713, UINT16_MAX, 9713, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9715, UINT16_MAX, 9715, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9717, UINT16_MAX, 9717, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9719, UINT16_MAX, 9719, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9721, UINT16_MAX, 9721, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9723, UINT16_MAX, 9723, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9725, UINT16_MAX, 9725, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6811, UINT16_MAX, 6811, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6813, UINT16_MAX, 6813, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6815, UINT16_MAX, 6815, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -12195,61 +13359,59 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6847, UINT16_MAX, 6847, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6849, UINT16_MAX, 6849, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6851, UINT16_MAX, 6851, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9098, UINT16_MAX, 9098, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9100, UINT16_MAX, 9100, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9102, UINT16_MAX, 9102, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9104, UINT16_MAX, 9104, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9106, UINT16_MAX, 9106, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9108, UINT16_MAX, 9108, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9110, UINT16_MAX, 9110, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9112, UINT16_MAX, 9112, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9114, UINT16_MAX, 9114, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9116, UINT16_MAX, 9116, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9118, UINT16_MAX, 9118, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9120, UINT16_MAX, 9120, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9122, UINT16_MAX, 9122, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9124, UINT16_MAX, 9124, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9126, UINT16_MAX, 9126, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9128, UINT16_MAX, 9128, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9130, UINT16_MAX, 9130, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9132, UINT16_MAX, 9132, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9134, UINT16_MAX, 9134, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9136, UINT16_MAX, 9136, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9138, UINT16_MAX, 9138, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9140, UINT16_MAX, 9140, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9142, UINT16_MAX, 9142, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9144, UINT16_MAX, 9144, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9146, UINT16_MAX, 9146, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9148, UINT16_MAX, 9148, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9150, UINT16_MAX, 9150, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9152, UINT16_MAX, 9152, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9154, UINT16_MAX, 9154, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9156, UINT16_MAX, 9156, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9158, UINT16_MAX, 9158, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9160, UINT16_MAX, 9160, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9162, UINT16_MAX, 9162, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9164, UINT16_MAX, 9164, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9166, UINT16_MAX, 9166, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9168, UINT16_MAX, 9168, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6853, UINT16_MAX, 6853, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6855, UINT16_MAX, 6855, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6857, UINT16_MAX, 6857, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6859, UINT16_MAX, 6859, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6861, UINT16_MAX, 6861, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6863, UINT16_MAX, 6863, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6865, UINT16_MAX, 6865, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6867, UINT16_MAX, 6867, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6869, UINT16_MAX, 6869, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6871, UINT16_MAX, 6871, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6873, UINT16_MAX, 6873, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6875, UINT16_MAX, 6875, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6877, UINT16_MAX, 6877, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6879, UINT16_MAX, 6879, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 6881, UINT16_MAX, 6881, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9727, UINT16_MAX, 9727, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9729, UINT16_MAX, 9729, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9731, UINT16_MAX, 9731, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9733, UINT16_MAX, 9733, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9735, UINT16_MAX, 9735, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9737, UINT16_MAX, 9737, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9739, UINT16_MAX, 9739, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9741, UINT16_MAX, 9741, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9743, UINT16_MAX, 9743, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9745, UINT16_MAX, 9745, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9747, UINT16_MAX, 9747, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9749, UINT16_MAX, 9749, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9751, UINT16_MAX, 9751, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9753, UINT16_MAX, 9753, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9755, UINT16_MAX, 9755, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9757, UINT16_MAX, 9757, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9759, UINT16_MAX, 9759, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9761, UINT16_MAX, 9761, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9763, UINT16_MAX, 9763, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9765, UINT16_MAX, 9765, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9767, UINT16_MAX, 9767, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9769, UINT16_MAX, 9769, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9771, UINT16_MAX, 9771, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9773, UINT16_MAX, 9773, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9775, UINT16_MAX, 9775, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9777, UINT16_MAX, 9777, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9779, UINT16_MAX, 9779, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9781, UINT16_MAX, 9781, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9783, UINT16_MAX, 9783, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9785, UINT16_MAX, 9785, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9787, UINT16_MAX, 9787, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9789, UINT16_MAX, 9789, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9791, UINT16_MAX, 9791, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9793, UINT16_MAX, 9793, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9795, UINT16_MAX, 9795, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9797, UINT16_MAX, 9797, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6853, UINT16_MAX, 6853, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6855, UINT16_MAX, 6855, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6857, UINT16_MAX, 6857, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6859, UINT16_MAX, 6859, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6861, UINT16_MAX, 6861, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6863, UINT16_MAX, 6863, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6865, UINT16_MAX, 6865, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6867, UINT16_MAX, 6867, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6869, UINT16_MAX, 6869, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6871, UINT16_MAX, 6871, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6873, UINT16_MAX, 6873, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6875, UINT16_MAX, 6875, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6877, UINT16_MAX, 6877, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6879, UINT16_MAX, 6879, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6881, UINT16_MAX, 6881, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6883, UINT16_MAX, 6883, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6885, UINT16_MAX, 6885, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6887, UINT16_MAX, 6887, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -12286,104 +13448,104 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6949, UINT16_MAX, 6949, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6951, UINT16_MAX, 6951, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6953, UINT16_MAX, 6953, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9170, UINT16_MAX, 9170, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9172, UINT16_MAX, 9172, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9174, UINT16_MAX, 9174, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9176, UINT16_MAX, 9176, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9178, UINT16_MAX, 9178, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9180, UINT16_MAX, 9180, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9182, UINT16_MAX, 9182, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9184, UINT16_MAX, 9184, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9186, UINT16_MAX, 9186, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9188, UINT16_MAX, 9188, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9190, UINT16_MAX, 9190, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9192, UINT16_MAX, 9192, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9194, UINT16_MAX, 9194, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9196, UINT16_MAX, 9196, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9198, UINT16_MAX, 9198, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9200, UINT16_MAX, 9200, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9202, UINT16_MAX, 9202, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9204, UINT16_MAX, 9204, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9206, UINT16_MAX, 9206, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9208, UINT16_MAX, 9208, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9210, UINT16_MAX, 9210, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9212, UINT16_MAX, 9212, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9214, UINT16_MAX, 9214, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9216, UINT16_MAX, 9216, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9218, UINT16_MAX, 9218, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9220, UINT16_MAX, 9220, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9222, UINT16_MAX, 9222, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9224, UINT16_MAX, 9224, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9226, UINT16_MAX, 9226, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9228, UINT16_MAX, 9228, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9230, UINT16_MAX, 9230, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9232, UINT16_MAX, 9232, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9234, UINT16_MAX, 9234, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9236, UINT16_MAX, 9236, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9238, UINT16_MAX, 9238, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9240, UINT16_MAX, 9240, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9242, UINT16_MAX, 9242, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9244, UINT16_MAX, 9244, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9246, UINT16_MAX, 9246, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9248, UINT16_MAX, 9248, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9250, UINT16_MAX, 9250, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9252, UINT16_MAX, 9252, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9254, UINT16_MAX, 9254, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9256, UINT16_MAX, 9256, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9258, UINT16_MAX, 9258, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9260, UINT16_MAX, 9260, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9262, UINT16_MAX, 9262, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9264, UINT16_MAX, 9264, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9266, UINT16_MAX, 9266, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9268, UINT16_MAX, 9268, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9270, UINT16_MAX, 9270, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6955, UINT16_MAX, 6955, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6957, UINT16_MAX, 6957, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6959, UINT16_MAX, 6959, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6961, UINT16_MAX, 6961, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6963, UINT16_MAX, 6963, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6965, UINT16_MAX, 6965, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6967, UINT16_MAX, 6967, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6969, UINT16_MAX, 6969, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6971, UINT16_MAX, 6971, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6973, UINT16_MAX, 6973, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6975, UINT16_MAX, 6975, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6977, UINT16_MAX, 6977, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6979, UINT16_MAX, 6979, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6981, UINT16_MAX, 6981, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 6983, UINT16_MAX, 6983, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9799, UINT16_MAX, 9799, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9801, UINT16_MAX, 9801, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9803, UINT16_MAX, 9803, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9805, UINT16_MAX, 9805, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9807, UINT16_MAX, 9807, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9809, UINT16_MAX, 9809, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9811, UINT16_MAX, 9811, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9813, UINT16_MAX, 9813, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9815, UINT16_MAX, 9815, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9817, UINT16_MAX, 9817, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9819, UINT16_MAX, 9819, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9821, UINT16_MAX, 9821, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9823, UINT16_MAX, 9823, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9825, UINT16_MAX, 9825, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9827, UINT16_MAX, 9827, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9829, UINT16_MAX, 9829, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9831, UINT16_MAX, 9831, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9833, UINT16_MAX, 9833, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9835, UINT16_MAX, 9835, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9837, UINT16_MAX, 9837, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9839, UINT16_MAX, 9839, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9841, UINT16_MAX, 9841, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9843, UINT16_MAX, 9843, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9845, UINT16_MAX, 9845, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9847, UINT16_MAX, 9847, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9849, UINT16_MAX, 9849, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9851, UINT16_MAX, 9851, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9853, UINT16_MAX, 9853, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9855, UINT16_MAX, 9855, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9857, UINT16_MAX, 9857, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9859, UINT16_MAX, 9859, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9861, UINT16_MAX, 9861, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9863, UINT16_MAX, 9863, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9865, UINT16_MAX, 9865, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9867, UINT16_MAX, 9867, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9869, UINT16_MAX, 9869, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9871, UINT16_MAX, 9871, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9873, UINT16_MAX, 9873, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9875, UINT16_MAX, 9875, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9877, UINT16_MAX, 9877, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9879, UINT16_MAX, 9879, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9881, UINT16_MAX, 9881, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9883, UINT16_MAX, 9883, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9885, UINT16_MAX, 9885, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9887, UINT16_MAX, 9887, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9889, UINT16_MAX, 9889, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9891, UINT16_MAX, 9891, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9893, UINT16_MAX, 9893, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9895, UINT16_MAX, 9895, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9897, UINT16_MAX, 9897, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9899, UINT16_MAX, 9899, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_AN, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_AN, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5328, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15147, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5332, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15151, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5336, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15155, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_AL, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5328, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15177, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5332, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15181, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5336, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15185, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_MN, 7, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49206, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, true, 0, 0, UTF8PROC_BOUNDCLASS_PREPEND}, {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49208, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, 15159, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, 15163, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, + {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, 15189, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, + {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, 15193, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5340, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5344, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49210, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5348, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, - {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 15167, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, - {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 15171, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, + {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 15197, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, + {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 15201, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49212, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49216, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5354, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_NSM, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49214, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 15175, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, - {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 15179, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, + {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 15205, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, + {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 15209, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49218, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 15183, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, + {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 15213, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49220, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5362, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5366, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, - {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 15187, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, - {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 15191, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7003, UINT16_MAX, 7003, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7005, UINT16_MAX, 7005, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7007, UINT16_MAX, 7007, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7009, UINT16_MAX, 7009, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7011, UINT16_MAX, 7011, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7013, UINT16_MAX, 7013, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7015, UINT16_MAX, 7015, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7017, UINT16_MAX, 7017, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7019, UINT16_MAX, 7019, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7021, UINT16_MAX, 7021, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7023, UINT16_MAX, 7023, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7025, UINT16_MAX, 7025, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7027, UINT16_MAX, 7027, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7029, UINT16_MAX, 7029, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7031, UINT16_MAX, 7031, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 15217, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, + {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 15221, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7033, UINT16_MAX, 7033, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7035, UINT16_MAX, 7035, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7037, UINT16_MAX, 7037, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -12401,688 +13563,1440 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7061, UINT16_MAX, 7061, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7063, UINT16_MAX, 7063, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7065, UINT16_MAX, 7065, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9272, UINT16_MAX, 9272, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9274, UINT16_MAX, 9274, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9276, UINT16_MAX, 9276, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9278, UINT16_MAX, 9278, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9280, UINT16_MAX, 9280, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9282, UINT16_MAX, 9282, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9284, UINT16_MAX, 9284, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9286, UINT16_MAX, 9286, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9288, UINT16_MAX, 9288, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9290, UINT16_MAX, 9290, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9292, UINT16_MAX, 9292, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9294, UINT16_MAX, 9294, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9296, UINT16_MAX, 9296, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9298, UINT16_MAX, 9298, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9300, UINT16_MAX, 9300, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9302, UINT16_MAX, 9302, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9304, UINT16_MAX, 9304, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9306, UINT16_MAX, 9306, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9308, UINT16_MAX, 9308, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9310, UINT16_MAX, 9310, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9312, UINT16_MAX, 9312, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9314, UINT16_MAX, 9314, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9316, UINT16_MAX, 9316, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9318, UINT16_MAX, 9318, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9320, UINT16_MAX, 9320, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9322, UINT16_MAX, 9322, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9324, UINT16_MAX, 9324, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9326, UINT16_MAX, 9326, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9328, UINT16_MAX, 9328, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9330, UINT16_MAX, 9330, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9332, UINT16_MAX, 9332, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9334, UINT16_MAX, 9334, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7067, UINT16_MAX, 7067, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7069, UINT16_MAX, 7069, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7071, UINT16_MAX, 7071, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7073, UINT16_MAX, 7073, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7075, UINT16_MAX, 7075, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7077, UINT16_MAX, 7077, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7079, UINT16_MAX, 7079, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7081, UINT16_MAX, 7081, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7083, UINT16_MAX, 7083, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7085, UINT16_MAX, 7085, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7087, UINT16_MAX, 7087, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7089, UINT16_MAX, 7089, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7091, UINT16_MAX, 7091, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7093, UINT16_MAX, 7093, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7095, UINT16_MAX, 7095, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9901, UINT16_MAX, 9901, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9903, UINT16_MAX, 9903, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9905, UINT16_MAX, 9905, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9907, UINT16_MAX, 9907, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9909, UINT16_MAX, 9909, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9911, UINT16_MAX, 9911, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9913, UINT16_MAX, 9913, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9915, UINT16_MAX, 9915, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9917, UINT16_MAX, 9917, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9919, UINT16_MAX, 9919, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9921, UINT16_MAX, 9921, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9923, UINT16_MAX, 9923, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9925, UINT16_MAX, 9925, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9927, UINT16_MAX, 9927, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9929, UINT16_MAX, 9929, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9931, UINT16_MAX, 9931, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9933, UINT16_MAX, 9933, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9935, UINT16_MAX, 9935, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9937, UINT16_MAX, 9937, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9939, UINT16_MAX, 9939, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9941, UINT16_MAX, 9941, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9943, UINT16_MAX, 9943, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9945, UINT16_MAX, 9945, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9947, UINT16_MAX, 9947, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9949, UINT16_MAX, 9949, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9951, UINT16_MAX, 9951, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9953, UINT16_MAX, 9953, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9955, UINT16_MAX, 9955, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9957, UINT16_MAX, 9957, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9959, UINT16_MAX, 9959, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9961, UINT16_MAX, 9961, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9963, UINT16_MAX, 9963, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49222, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, + {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5370, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, + {UTF8PROC_CATEGORY_MC, 0, UTF8PROC_BIDI_CLASS_L, 0, 15289, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, + {UTF8PROC_CATEGORY_MN, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MN, 9, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5370, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_CF, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, true, 0, 0, UTF8PROC_BOUNDCLASS_CONTROL}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7101, UINT16_MAX, 7101, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7103, UINT16_MAX, 7103, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7105, UINT16_MAX, 7105, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7107, UINT16_MAX, 7107, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7109, UINT16_MAX, 7109, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7111, UINT16_MAX, 7111, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7113, UINT16_MAX, 7113, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7115, UINT16_MAX, 7115, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7117, UINT16_MAX, 7117, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7119, UINT16_MAX, 7119, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7121, UINT16_MAX, 7121, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7123, UINT16_MAX, 7123, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7125, UINT16_MAX, 7125, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7127, UINT16_MAX, 7127, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7129, UINT16_MAX, 7129, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7131, UINT16_MAX, 7131, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7133, UINT16_MAX, 7133, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7135, UINT16_MAX, 7135, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7137, UINT16_MAX, 7137, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7139, UINT16_MAX, 7139, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7141, UINT16_MAX, 7141, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7143, UINT16_MAX, 7143, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7145, UINT16_MAX, 7145, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7147, UINT16_MAX, 7147, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7149, UINT16_MAX, 7149, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7151, UINT16_MAX, 7151, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7153, UINT16_MAX, 7153, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7155, UINT16_MAX, 7155, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7157, UINT16_MAX, 7157, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7159, UINT16_MAX, 7159, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7161, UINT16_MAX, 7161, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, 7163, UINT16_MAX, 7163, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9965, UINT16_MAX, 9965, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9967, UINT16_MAX, 9967, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9969, UINT16_MAX, 9969, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9971, UINT16_MAX, 9971, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9973, UINT16_MAX, 9973, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9975, UINT16_MAX, 9975, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9977, UINT16_MAX, 9977, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9979, UINT16_MAX, 9979, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9981, UINT16_MAX, 9981, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9983, UINT16_MAX, 9983, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9985, UINT16_MAX, 9985, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9987, UINT16_MAX, 9987, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9989, UINT16_MAX, 9989, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9991, UINT16_MAX, 9991, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9993, UINT16_MAX, 9993, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9995, UINT16_MAX, 9995, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9997, UINT16_MAX, 9997, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 9999, UINT16_MAX, 9999, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 10001, UINT16_MAX, 10001, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 10003, UINT16_MAX, 10003, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 10005, UINT16_MAX, 10005, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 10007, UINT16_MAX, 10007, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 10009, UINT16_MAX, 10009, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 10011, UINT16_MAX, 10011, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 10013, UINT16_MAX, 10013, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 10015, UINT16_MAX, 10015, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 10017, UINT16_MAX, 10017, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 10019, UINT16_MAX, 10019, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 10021, UINT16_MAX, 10021, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 10023, UINT16_MAX, 10023, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 10025, UINT16_MAX, 10025, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, 10027, UINT16_MAX, 10027, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_MC, 6, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5374, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15259, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15263, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5378, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15267, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15271, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15275, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15279, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15283, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_MC, 216, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49222, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5378, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15357, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15361, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5382, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15365, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15369, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15373, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15377, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15381, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_MC, 216, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49224, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 216, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, {UTF8PROC_CATEGORY_MC, 226, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_SPACINGMARK}, - {UTF8PROC_CATEGORY_MC, 216, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49224, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 216, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49226, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 216, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49228, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 216, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49230, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_MC, 216, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49232, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5390, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_MC, 216, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 49234, false, false, false, false, 0, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5394, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15287, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5398, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15291, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5404, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15295, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15299, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15303, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15307, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1446, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1449, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1452, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1455, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1456, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1460, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3288, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1464, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1465, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2891, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1466, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2908, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3295, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 5, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 10, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 12, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 13, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 15, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 16, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 17, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 18, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 19, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 20, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 21, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 22, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 23, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 24, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 25, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1446, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1448, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2795, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1450, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2820, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1452, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1453, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1454, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1455, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1456, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1457, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1458, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1459, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1460, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1462, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2809, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1463, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3288, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1464, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1465, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2891, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1466, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2908, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3295, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2817, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 5, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 6, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 10, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 12, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 13, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 14, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 15, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 16, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 17, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 18, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 19, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 20, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 21, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 22, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 23, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 24, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 25, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7119, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7120, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7121, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7122, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7123, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7124, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7125, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7126, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 915, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7127, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7128, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7129, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7130, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7131, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7132, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7133, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2830, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7134, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7135, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 917, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7136, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 897, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7137, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7138, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7139, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2818, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7140, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 845, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 846, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 847, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 848, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 849, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 850, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 851, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 852, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 807, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 853, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 854, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 35, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 855, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 856, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 857, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 858, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 859, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 914, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 860, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 861, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 862, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 863, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 864, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 865, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 866, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FONT, 7141, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7142, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7143, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7144, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7145, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7146, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7147, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7121, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7122, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2829, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7123, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7124, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7125, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7126, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 915, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7127, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7128, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7129, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7130, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7131, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7132, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7133, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7134, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7135, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 917, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7136, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 897, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7137, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7138, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7139, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2818, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7140, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 845, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 846, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 848, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 849, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 850, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 851, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 852, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 807, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 853, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 854, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 35, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 855, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 856, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 857, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 859, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 914, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 860, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 861, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 862, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 863, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 864, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 865, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 866, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FONT, 7141, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7142, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7144, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7145, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7146, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7147, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7143, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7148, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 904, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5398, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15385, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5402, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15389, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, 5408, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15393, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15397, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15401, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, 15405, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, true, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1491, UINT16_MAX, UINT16_MAX, 10029, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1493, UINT16_MAX, UINT16_MAX, 10031, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2812, UINT16_MAX, UINT16_MAX, 10033, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1494, UINT16_MAX, UINT16_MAX, 10035, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1495, UINT16_MAX, UINT16_MAX, 10037, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2837, UINT16_MAX, UINT16_MAX, 10039, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1497, UINT16_MAX, UINT16_MAX, 10041, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1498, UINT16_MAX, UINT16_MAX, 10043, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1499, UINT16_MAX, UINT16_MAX, 10045, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1500, UINT16_MAX, UINT16_MAX, 10047, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1501, UINT16_MAX, UINT16_MAX, 10049, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1502, UINT16_MAX, UINT16_MAX, 10051, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1503, UINT16_MAX, UINT16_MAX, 10053, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1504, UINT16_MAX, UINT16_MAX, 10055, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1505, UINT16_MAX, UINT16_MAX, 10057, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1507, UINT16_MAX, UINT16_MAX, 10059, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2826, UINT16_MAX, UINT16_MAX, 10061, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1508, UINT16_MAX, UINT16_MAX, 10063, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3305, UINT16_MAX, UINT16_MAX, 10065, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1509, UINT16_MAX, UINT16_MAX, 10067, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1510, UINT16_MAX, UINT16_MAX, 10069, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2908, UINT16_MAX, UINT16_MAX, 10071, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1511, UINT16_MAX, UINT16_MAX, 10073, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2925, UINT16_MAX, UINT16_MAX, 10075, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3312, UINT16_MAX, UINT16_MAX, 10077, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2834, UINT16_MAX, UINT16_MAX, 10079, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 0, UINT16_MAX, 10081, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1, UINT16_MAX, 10083, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2, UINT16_MAX, 10085, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, 10087, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, 10089, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 5, UINT16_MAX, 10091, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 6, UINT16_MAX, 10093, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7, UINT16_MAX, 10095, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, 10097, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, 10099, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 10, UINT16_MAX, 10101, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, 10103, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 12, UINT16_MAX, 10105, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 13, UINT16_MAX, 10107, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 14, UINT16_MAX, 10109, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 15, UINT16_MAX, 10111, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 16, UINT16_MAX, 10113, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 17, UINT16_MAX, 10115, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 18, UINT16_MAX, 10117, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 19, UINT16_MAX, 10119, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 20, UINT16_MAX, 10121, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 21, UINT16_MAX, 10123, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 22, UINT16_MAX, 10125, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 23, UINT16_MAX, 10127, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 24, UINT16_MAX, 10129, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 25, UINT16_MAX, 10131, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1491, UINT16_MAX, UINT16_MAX, 10133, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1493, UINT16_MAX, UINT16_MAX, 10135, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2812, UINT16_MAX, UINT16_MAX, 10137, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1494, UINT16_MAX, UINT16_MAX, 10139, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1495, UINT16_MAX, UINT16_MAX, 10141, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2837, UINT16_MAX, UINT16_MAX, 10143, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1497, UINT16_MAX, UINT16_MAX, 10145, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1498, UINT16_MAX, UINT16_MAX, 10147, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1499, UINT16_MAX, UINT16_MAX, 10149, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1500, UINT16_MAX, UINT16_MAX, 10151, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1501, UINT16_MAX, UINT16_MAX, 10153, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1502, UINT16_MAX, UINT16_MAX, 10155, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1503, UINT16_MAX, UINT16_MAX, 10157, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1504, UINT16_MAX, UINT16_MAX, 10159, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1505, UINT16_MAX, UINT16_MAX, 10161, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1507, UINT16_MAX, UINT16_MAX, 10163, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2826, UINT16_MAX, UINT16_MAX, 10165, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1508, UINT16_MAX, UINT16_MAX, 10167, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3305, UINT16_MAX, UINT16_MAX, 10169, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1509, UINT16_MAX, UINT16_MAX, 10171, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1510, UINT16_MAX, UINT16_MAX, 10173, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2908, UINT16_MAX, UINT16_MAX, 10175, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1511, UINT16_MAX, UINT16_MAX, 10177, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2925, UINT16_MAX, UINT16_MAX, 10179, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3312, UINT16_MAX, UINT16_MAX, 10181, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2834, UINT16_MAX, UINT16_MAX, 10183, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 0, UINT16_MAX, 10185, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1, UINT16_MAX, 10187, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2, UINT16_MAX, 10189, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, 10191, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, 10193, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 5, UINT16_MAX, 10195, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 6, UINT16_MAX, 10197, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, 10199, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, 10201, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 10, UINT16_MAX, 10203, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, 10205, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 12, UINT16_MAX, 10207, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 13, UINT16_MAX, 10209, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 14, UINT16_MAX, 10211, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 15, UINT16_MAX, 10213, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 16, UINT16_MAX, 10215, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 17, UINT16_MAX, 10217, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 18, UINT16_MAX, 10219, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 19, UINT16_MAX, 10221, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 20, UINT16_MAX, 10223, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 21, UINT16_MAX, 10225, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 22, UINT16_MAX, 10227, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 23, UINT16_MAX, 10229, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 24, UINT16_MAX, 10231, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 25, UINT16_MAX, 10233, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1491, UINT16_MAX, UINT16_MAX, 10235, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1493, UINT16_MAX, UINT16_MAX, 10237, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2812, UINT16_MAX, UINT16_MAX, 10239, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1494, UINT16_MAX, UINT16_MAX, 10241, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1495, UINT16_MAX, UINT16_MAX, 10243, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2837, UINT16_MAX, UINT16_MAX, 10245, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1497, UINT16_MAX, UINT16_MAX, 10247, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1498, UINT16_MAX, UINT16_MAX, 10249, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1499, UINT16_MAX, UINT16_MAX, 10251, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1500, UINT16_MAX, UINT16_MAX, 10253, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1501, UINT16_MAX, UINT16_MAX, 10255, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1502, UINT16_MAX, UINT16_MAX, 10257, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1503, UINT16_MAX, UINT16_MAX, 10259, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1504, UINT16_MAX, UINT16_MAX, 10261, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1505, UINT16_MAX, UINT16_MAX, 10263, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1507, UINT16_MAX, UINT16_MAX, 10265, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2826, UINT16_MAX, UINT16_MAX, 10267, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1508, UINT16_MAX, UINT16_MAX, 10269, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3305, UINT16_MAX, UINT16_MAX, 10271, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1509, UINT16_MAX, UINT16_MAX, 10273, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1510, UINT16_MAX, UINT16_MAX, 10275, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2908, UINT16_MAX, UINT16_MAX, 10277, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1511, UINT16_MAX, UINT16_MAX, 10279, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2925, UINT16_MAX, UINT16_MAX, 10281, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3312, UINT16_MAX, UINT16_MAX, 10283, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2834, UINT16_MAX, UINT16_MAX, 10285, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 0, UINT16_MAX, 10287, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1, UINT16_MAX, 10289, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2, UINT16_MAX, 10291, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, 10293, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, 10295, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 5, UINT16_MAX, 10297, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 6, UINT16_MAX, 10299, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7, UINT16_MAX, 10301, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, 10303, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, 10305, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 10, UINT16_MAX, 10307, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, 10309, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 12, UINT16_MAX, 10311, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 13, UINT16_MAX, 10313, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 14, UINT16_MAX, 10315, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 15, UINT16_MAX, 10317, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 16, UINT16_MAX, 10319, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 17, UINT16_MAX, 10321, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 18, UINT16_MAX, 10323, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 19, UINT16_MAX, 10325, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 20, UINT16_MAX, 10327, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 21, UINT16_MAX, 10329, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 22, UINT16_MAX, 10331, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 23, UINT16_MAX, 10333, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 24, UINT16_MAX, 10335, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 25, UINT16_MAX, 10337, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1491, UINT16_MAX, UINT16_MAX, 10339, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2812, UINT16_MAX, UINT16_MAX, 10341, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1494, UINT16_MAX, UINT16_MAX, 10343, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1497, UINT16_MAX, UINT16_MAX, 10345, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1500, UINT16_MAX, UINT16_MAX, 10347, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1501, UINT16_MAX, UINT16_MAX, 10349, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1504, UINT16_MAX, UINT16_MAX, 10351, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1505, UINT16_MAX, UINT16_MAX, 10353, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1507, UINT16_MAX, UINT16_MAX, 10355, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2826, UINT16_MAX, UINT16_MAX, 10357, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3305, UINT16_MAX, UINT16_MAX, 10359, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1509, UINT16_MAX, UINT16_MAX, 10361, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1510, UINT16_MAX, UINT16_MAX, 10363, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2908, UINT16_MAX, UINT16_MAX, 10365, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1511, UINT16_MAX, UINT16_MAX, 10367, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2925, UINT16_MAX, UINT16_MAX, 10369, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3312, UINT16_MAX, UINT16_MAX, 10371, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2834, UINT16_MAX, UINT16_MAX, 10373, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 0, UINT16_MAX, 10375, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1, UINT16_MAX, 10377, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2, UINT16_MAX, 10379, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, 10381, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 5, UINT16_MAX, 10383, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7, UINT16_MAX, 10385, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, 10387, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, 10389, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 10, UINT16_MAX, 10391, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, 10393, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 12, UINT16_MAX, 10395, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 13, UINT16_MAX, 10397, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 15, UINT16_MAX, 10399, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 16, UINT16_MAX, 10401, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 17, UINT16_MAX, 10403, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 18, UINT16_MAX, 10405, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 19, UINT16_MAX, 10407, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 20, UINT16_MAX, 10409, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 21, UINT16_MAX, 10411, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 22, UINT16_MAX, 10413, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 23, UINT16_MAX, 10415, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 24, UINT16_MAX, 10417, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 25, UINT16_MAX, 10419, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1491, UINT16_MAX, UINT16_MAX, 10421, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1493, UINT16_MAX, UINT16_MAX, 10423, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2812, UINT16_MAX, UINT16_MAX, 10425, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1494, UINT16_MAX, UINT16_MAX, 10427, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1495, UINT16_MAX, UINT16_MAX, 10429, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2837, UINT16_MAX, UINT16_MAX, 10431, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1497, UINT16_MAX, UINT16_MAX, 10433, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1498, UINT16_MAX, UINT16_MAX, 10435, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1499, UINT16_MAX, UINT16_MAX, 10437, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1500, UINT16_MAX, UINT16_MAX, 10439, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1501, UINT16_MAX, UINT16_MAX, 10441, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1502, UINT16_MAX, UINT16_MAX, 10443, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1503, UINT16_MAX, UINT16_MAX, 10445, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1504, UINT16_MAX, UINT16_MAX, 10447, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1505, UINT16_MAX, UINT16_MAX, 10449, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1507, UINT16_MAX, UINT16_MAX, 10451, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2826, UINT16_MAX, UINT16_MAX, 10453, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1508, UINT16_MAX, UINT16_MAX, 10455, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3305, UINT16_MAX, UINT16_MAX, 10457, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1509, UINT16_MAX, UINT16_MAX, 10459, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1510, UINT16_MAX, UINT16_MAX, 10461, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2908, UINT16_MAX, UINT16_MAX, 10463, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1511, UINT16_MAX, UINT16_MAX, 10465, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2925, UINT16_MAX, UINT16_MAX, 10467, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3312, UINT16_MAX, UINT16_MAX, 10469, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2834, UINT16_MAX, UINT16_MAX, 10471, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 0, UINT16_MAX, 10473, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1, UINT16_MAX, 10475, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2, UINT16_MAX, 10477, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, 10479, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, 10481, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 5, UINT16_MAX, 10483, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 6, UINT16_MAX, 10485, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7, UINT16_MAX, 10487, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, 10489, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, 10491, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 10, UINT16_MAX, 10493, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, 10495, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 12, UINT16_MAX, 10497, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 13, UINT16_MAX, 10499, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 14, UINT16_MAX, 10501, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 15, UINT16_MAX, 10503, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 16, UINT16_MAX, 10505, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 17, UINT16_MAX, 10507, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 18, UINT16_MAX, 10509, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 19, UINT16_MAX, 10511, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 20, UINT16_MAX, 10513, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 21, UINT16_MAX, 10515, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 22, UINT16_MAX, 10517, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 23, UINT16_MAX, 10519, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 24, UINT16_MAX, 10521, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 25, UINT16_MAX, 10523, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1491, UINT16_MAX, UINT16_MAX, 10525, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1493, UINT16_MAX, UINT16_MAX, 10527, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1494, UINT16_MAX, UINT16_MAX, 10529, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1495, UINT16_MAX, UINT16_MAX, 10531, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2837, UINT16_MAX, UINT16_MAX, 10533, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1497, UINT16_MAX, UINT16_MAX, 10535, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1500, UINT16_MAX, UINT16_MAX, 10537, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1501, UINT16_MAX, UINT16_MAX, 10539, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1502, UINT16_MAX, UINT16_MAX, 10541, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1503, UINT16_MAX, UINT16_MAX, 10543, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1504, UINT16_MAX, UINT16_MAX, 10545, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1505, UINT16_MAX, UINT16_MAX, 10547, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1507, UINT16_MAX, UINT16_MAX, 10549, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2826, UINT16_MAX, UINT16_MAX, 10551, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3305, UINT16_MAX, UINT16_MAX, 10553, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1509, UINT16_MAX, UINT16_MAX, 10555, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1510, UINT16_MAX, UINT16_MAX, 10557, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2908, UINT16_MAX, UINT16_MAX, 10559, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1511, UINT16_MAX, UINT16_MAX, 10561, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2925, UINT16_MAX, UINT16_MAX, 10563, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3312, UINT16_MAX, UINT16_MAX, 10565, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 0, UINT16_MAX, 10567, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1, UINT16_MAX, 10569, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2, UINT16_MAX, 10571, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, 10573, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, 10575, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 5, UINT16_MAX, 10577, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 6, UINT16_MAX, 10579, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7, UINT16_MAX, 10581, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, 10583, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, 10585, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 10, UINT16_MAX, 10587, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, 10589, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 12, UINT16_MAX, 10591, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 13, UINT16_MAX, 10593, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 14, UINT16_MAX, 10595, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 15, UINT16_MAX, 10597, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 16, UINT16_MAX, 10599, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 17, UINT16_MAX, 10601, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 18, UINT16_MAX, 10603, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 19, UINT16_MAX, 10605, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 20, UINT16_MAX, 10607, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 21, UINT16_MAX, 10609, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 22, UINT16_MAX, 10611, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 23, UINT16_MAX, 10613, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 24, UINT16_MAX, 10615, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 25, UINT16_MAX, 10617, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1491, UINT16_MAX, UINT16_MAX, 10619, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1493, UINT16_MAX, UINT16_MAX, 10621, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1494, UINT16_MAX, UINT16_MAX, 10623, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1495, UINT16_MAX, UINT16_MAX, 10625, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2837, UINT16_MAX, UINT16_MAX, 10627, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1497, UINT16_MAX, UINT16_MAX, 10629, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1499, UINT16_MAX, UINT16_MAX, 10631, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1500, UINT16_MAX, UINT16_MAX, 10633, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1501, UINT16_MAX, UINT16_MAX, 10635, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1502, UINT16_MAX, UINT16_MAX, 10637, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1503, UINT16_MAX, UINT16_MAX, 10639, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1505, UINT16_MAX, UINT16_MAX, 10641, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3305, UINT16_MAX, UINT16_MAX, 10643, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1509, UINT16_MAX, UINT16_MAX, 10645, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1510, UINT16_MAX, UINT16_MAX, 10647, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2908, UINT16_MAX, UINT16_MAX, 10649, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1511, UINT16_MAX, UINT16_MAX, 10651, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2925, UINT16_MAX, UINT16_MAX, 10653, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3312, UINT16_MAX, UINT16_MAX, 10655, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 0, UINT16_MAX, 10657, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1, UINT16_MAX, 10659, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2, UINT16_MAX, 10661, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, 10663, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, 10665, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 5, UINT16_MAX, 10667, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 6, UINT16_MAX, 10669, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7, UINT16_MAX, 10671, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, 10673, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, 10675, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 10, UINT16_MAX, 10677, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, 10679, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 12, UINT16_MAX, 10681, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 13, UINT16_MAX, 10683, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 14, UINT16_MAX, 10685, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 15, UINT16_MAX, 10687, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 16, UINT16_MAX, 10689, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 17, UINT16_MAX, 10691, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 18, UINT16_MAX, 10693, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 19, UINT16_MAX, 10695, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 20, UINT16_MAX, 10697, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 21, UINT16_MAX, 10699, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 22, UINT16_MAX, 10701, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 23, UINT16_MAX, 10703, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 24, UINT16_MAX, 10705, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 25, UINT16_MAX, 10707, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1491, UINT16_MAX, UINT16_MAX, 10709, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1493, UINT16_MAX, UINT16_MAX, 10711, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2812, UINT16_MAX, UINT16_MAX, 10713, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1494, UINT16_MAX, UINT16_MAX, 10715, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1495, UINT16_MAX, UINT16_MAX, 10717, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2837, UINT16_MAX, UINT16_MAX, 10719, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1497, UINT16_MAX, UINT16_MAX, 10721, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1498, UINT16_MAX, UINT16_MAX, 10723, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1499, UINT16_MAX, UINT16_MAX, 10725, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1500, UINT16_MAX, UINT16_MAX, 10727, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1501, UINT16_MAX, UINT16_MAX, 10729, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1502, UINT16_MAX, UINT16_MAX, 10731, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1503, UINT16_MAX, UINT16_MAX, 10733, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1504, UINT16_MAX, UINT16_MAX, 10735, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1505, UINT16_MAX, UINT16_MAX, 10737, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1507, UINT16_MAX, UINT16_MAX, 10739, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2826, UINT16_MAX, UINT16_MAX, 10741, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1508, UINT16_MAX, UINT16_MAX, 10743, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3305, UINT16_MAX, UINT16_MAX, 10745, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1509, UINT16_MAX, UINT16_MAX, 10747, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1510, UINT16_MAX, UINT16_MAX, 10749, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2908, UINT16_MAX, UINT16_MAX, 10751, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1511, UINT16_MAX, UINT16_MAX, 10753, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2925, UINT16_MAX, UINT16_MAX, 10755, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3312, UINT16_MAX, UINT16_MAX, 10757, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2834, UINT16_MAX, UINT16_MAX, 10759, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 0, UINT16_MAX, 10761, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1, UINT16_MAX, 10763, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2, UINT16_MAX, 10765, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, 10767, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, 10769, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 5, UINT16_MAX, 10771, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 6, UINT16_MAX, 10773, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7, UINT16_MAX, 10775, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, 10777, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, 10779, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 10, UINT16_MAX, 10781, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, 10783, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 12, UINT16_MAX, 10785, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 13, UINT16_MAX, 10787, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 14, UINT16_MAX, 10789, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 15, UINT16_MAX, 10791, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 16, UINT16_MAX, 10793, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 17, UINT16_MAX, 10795, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 18, UINT16_MAX, 10797, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 19, UINT16_MAX, 10799, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 20, UINT16_MAX, 10801, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 21, UINT16_MAX, 10803, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 22, UINT16_MAX, 10805, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 23, UINT16_MAX, 10807, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 24, UINT16_MAX, 10809, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 25, UINT16_MAX, 10811, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1491, UINT16_MAX, UINT16_MAX, 10813, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1493, UINT16_MAX, UINT16_MAX, 10815, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2812, UINT16_MAX, UINT16_MAX, 10817, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1494, UINT16_MAX, UINT16_MAX, 10819, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1495, UINT16_MAX, UINT16_MAX, 10821, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2837, UINT16_MAX, UINT16_MAX, 10823, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1497, UINT16_MAX, UINT16_MAX, 10825, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1498, UINT16_MAX, UINT16_MAX, 10827, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1499, UINT16_MAX, UINT16_MAX, 10829, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1500, UINT16_MAX, UINT16_MAX, 10831, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1501, UINT16_MAX, UINT16_MAX, 10833, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1502, UINT16_MAX, UINT16_MAX, 10835, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1503, UINT16_MAX, UINT16_MAX, 10837, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1504, UINT16_MAX, UINT16_MAX, 10839, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1505, UINT16_MAX, UINT16_MAX, 10841, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1507, UINT16_MAX, UINT16_MAX, 10843, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2826, UINT16_MAX, UINT16_MAX, 10845, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1508, UINT16_MAX, UINT16_MAX, 10847, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3305, UINT16_MAX, UINT16_MAX, 10849, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1509, UINT16_MAX, UINT16_MAX, 10851, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1510, UINT16_MAX, UINT16_MAX, 10853, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2908, UINT16_MAX, UINT16_MAX, 10855, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1511, UINT16_MAX, UINT16_MAX, 10857, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2925, UINT16_MAX, UINT16_MAX, 10859, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3312, UINT16_MAX, UINT16_MAX, 10861, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2834, UINT16_MAX, UINT16_MAX, 10863, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 0, UINT16_MAX, 10865, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1, UINT16_MAX, 10867, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2, UINT16_MAX, 10869, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, 10871, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, 10873, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 5, UINT16_MAX, 10875, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 6, UINT16_MAX, 10877, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7, UINT16_MAX, 10879, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, 10881, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, 10883, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 10, UINT16_MAX, 10885, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, 10887, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 12, UINT16_MAX, 10889, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 13, UINT16_MAX, 10891, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 14, UINT16_MAX, 10893, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 15, UINT16_MAX, 10895, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 16, UINT16_MAX, 10897, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 17, UINT16_MAX, 10899, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 18, UINT16_MAX, 10901, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 19, UINT16_MAX, 10903, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 20, UINT16_MAX, 10905, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 21, UINT16_MAX, 10907, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 22, UINT16_MAX, 10909, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 23, UINT16_MAX, 10911, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 24, UINT16_MAX, 10913, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 25, UINT16_MAX, 10915, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1491, UINT16_MAX, UINT16_MAX, 10917, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1493, UINT16_MAX, UINT16_MAX, 10919, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2812, UINT16_MAX, UINT16_MAX, 10921, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1494, UINT16_MAX, UINT16_MAX, 10923, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1495, UINT16_MAX, UINT16_MAX, 10925, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2837, UINT16_MAX, UINT16_MAX, 10927, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1497, UINT16_MAX, UINT16_MAX, 10929, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1498, UINT16_MAX, UINT16_MAX, 10931, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1499, UINT16_MAX, UINT16_MAX, 10933, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1500, UINT16_MAX, UINT16_MAX, 10935, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1501, UINT16_MAX, UINT16_MAX, 10937, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1502, UINT16_MAX, UINT16_MAX, 10939, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1503, UINT16_MAX, UINT16_MAX, 10941, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1504, UINT16_MAX, UINT16_MAX, 10943, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1505, UINT16_MAX, UINT16_MAX, 10945, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1507, UINT16_MAX, UINT16_MAX, 10947, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2826, UINT16_MAX, UINT16_MAX, 10949, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1508, UINT16_MAX, UINT16_MAX, 10951, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3305, UINT16_MAX, UINT16_MAX, 10953, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1509, UINT16_MAX, UINT16_MAX, 10955, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1510, UINT16_MAX, UINT16_MAX, 10957, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2908, UINT16_MAX, UINT16_MAX, 10959, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1511, UINT16_MAX, UINT16_MAX, 10961, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2925, UINT16_MAX, UINT16_MAX, 10963, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3312, UINT16_MAX, UINT16_MAX, 10965, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2834, UINT16_MAX, UINT16_MAX, 10967, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 0, UINT16_MAX, 10969, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1, UINT16_MAX, 10971, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2, UINT16_MAX, 10973, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, 10975, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, 10977, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 5, UINT16_MAX, 10979, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 6, UINT16_MAX, 10981, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7, UINT16_MAX, 10983, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, 10985, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, 10987, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 10, UINT16_MAX, 10989, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, 10991, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 12, UINT16_MAX, 10993, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 13, UINT16_MAX, 10995, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 14, UINT16_MAX, 10997, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 15, UINT16_MAX, 10999, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 16, UINT16_MAX, 11001, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 17, UINT16_MAX, 11003, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 18, UINT16_MAX, 11005, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 19, UINT16_MAX, 11007, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 20, UINT16_MAX, 11009, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 21, UINT16_MAX, 11011, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 22, UINT16_MAX, 11013, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 23, UINT16_MAX, 11015, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 24, UINT16_MAX, 11017, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 25, UINT16_MAX, 11019, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1491, UINT16_MAX, UINT16_MAX, 11021, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1493, UINT16_MAX, UINT16_MAX, 11023, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2812, UINT16_MAX, UINT16_MAX, 11025, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1494, UINT16_MAX, UINT16_MAX, 11027, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1495, UINT16_MAX, UINT16_MAX, 11029, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2837, UINT16_MAX, UINT16_MAX, 11031, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1497, UINT16_MAX, UINT16_MAX, 11033, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1498, UINT16_MAX, UINT16_MAX, 11035, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1499, UINT16_MAX, UINT16_MAX, 11037, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1500, UINT16_MAX, UINT16_MAX, 11039, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1501, UINT16_MAX, UINT16_MAX, 11041, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1502, UINT16_MAX, UINT16_MAX, 11043, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1503, UINT16_MAX, UINT16_MAX, 11045, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1504, UINT16_MAX, UINT16_MAX, 11047, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1505, UINT16_MAX, UINT16_MAX, 11049, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1507, UINT16_MAX, UINT16_MAX, 11051, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2826, UINT16_MAX, UINT16_MAX, 11053, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1508, UINT16_MAX, UINT16_MAX, 11055, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3305, UINT16_MAX, UINT16_MAX, 11057, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1509, UINT16_MAX, UINT16_MAX, 11059, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1510, UINT16_MAX, UINT16_MAX, 11061, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2908, UINT16_MAX, UINT16_MAX, 11063, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1511, UINT16_MAX, UINT16_MAX, 11065, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2925, UINT16_MAX, UINT16_MAX, 11067, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3312, UINT16_MAX, UINT16_MAX, 11069, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2834, UINT16_MAX, UINT16_MAX, 11071, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 0, UINT16_MAX, 11073, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1, UINT16_MAX, 11075, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2, UINT16_MAX, 11077, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, 11079, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, 11081, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 5, UINT16_MAX, 11083, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 6, UINT16_MAX, 11085, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7, UINT16_MAX, 11087, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, 11089, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, 11091, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 10, UINT16_MAX, 11093, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, 11095, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 12, UINT16_MAX, 11097, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 13, UINT16_MAX, 11099, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 14, UINT16_MAX, 11101, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 15, UINT16_MAX, 11103, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 16, UINT16_MAX, 11105, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 17, UINT16_MAX, 11107, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 18, UINT16_MAX, 11109, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 19, UINT16_MAX, 11111, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 20, UINT16_MAX, 11113, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 21, UINT16_MAX, 11115, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 22, UINT16_MAX, 11117, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 23, UINT16_MAX, 11119, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 24, UINT16_MAX, 11121, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 25, UINT16_MAX, 11123, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1491, UINT16_MAX, UINT16_MAX, 11125, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1493, UINT16_MAX, UINT16_MAX, 11127, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2812, UINT16_MAX, UINT16_MAX, 11129, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1494, UINT16_MAX, UINT16_MAX, 11131, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1495, UINT16_MAX, UINT16_MAX, 11133, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2837, UINT16_MAX, UINT16_MAX, 11135, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1497, UINT16_MAX, UINT16_MAX, 11137, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1498, UINT16_MAX, UINT16_MAX, 11139, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1499, UINT16_MAX, UINT16_MAX, 11141, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1500, UINT16_MAX, UINT16_MAX, 11143, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1501, UINT16_MAX, UINT16_MAX, 11145, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1502, UINT16_MAX, UINT16_MAX, 11147, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1503, UINT16_MAX, UINT16_MAX, 11149, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1504, UINT16_MAX, UINT16_MAX, 11151, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1505, UINT16_MAX, UINT16_MAX, 11153, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1507, UINT16_MAX, UINT16_MAX, 11155, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2826, UINT16_MAX, UINT16_MAX, 11157, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1508, UINT16_MAX, UINT16_MAX, 11159, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3305, UINT16_MAX, UINT16_MAX, 11161, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1509, UINT16_MAX, UINT16_MAX, 11163, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1510, UINT16_MAX, UINT16_MAX, 11165, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2908, UINT16_MAX, UINT16_MAX, 11167, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1511, UINT16_MAX, UINT16_MAX, 11169, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2925, UINT16_MAX, UINT16_MAX, 11171, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3312, UINT16_MAX, UINT16_MAX, 11173, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2834, UINT16_MAX, UINT16_MAX, 11175, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 0, UINT16_MAX, 11177, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1, UINT16_MAX, 11179, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2, UINT16_MAX, 11181, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, 11183, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, 11185, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 5, UINT16_MAX, 11187, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 6, UINT16_MAX, 11189, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7, UINT16_MAX, 11191, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, 11193, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, 11195, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 10, UINT16_MAX, 11197, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, 11199, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 12, UINT16_MAX, 11201, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 13, UINT16_MAX, 11203, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 14, UINT16_MAX, 11205, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 15, UINT16_MAX, 11207, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 16, UINT16_MAX, 11209, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 17, UINT16_MAX, 11211, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 18, UINT16_MAX, 11213, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 19, UINT16_MAX, 11215, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 20, UINT16_MAX, 11217, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 21, UINT16_MAX, 11219, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 22, UINT16_MAX, 11221, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 23, UINT16_MAX, 11223, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 24, UINT16_MAX, 11225, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 25, UINT16_MAX, 11227, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1491, UINT16_MAX, UINT16_MAX, 11229, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1493, UINT16_MAX, UINT16_MAX, 11231, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2812, UINT16_MAX, UINT16_MAX, 11233, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1494, UINT16_MAX, UINT16_MAX, 11235, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1495, UINT16_MAX, UINT16_MAX, 11237, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2837, UINT16_MAX, UINT16_MAX, 11239, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1497, UINT16_MAX, UINT16_MAX, 11241, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1498, UINT16_MAX, UINT16_MAX, 11243, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1499, UINT16_MAX, UINT16_MAX, 11245, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1500, UINT16_MAX, UINT16_MAX, 11247, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1501, UINT16_MAX, UINT16_MAX, 11249, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1502, UINT16_MAX, UINT16_MAX, 11251, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1503, UINT16_MAX, UINT16_MAX, 11253, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1504, UINT16_MAX, UINT16_MAX, 11255, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1505, UINT16_MAX, UINT16_MAX, 11257, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1507, UINT16_MAX, UINT16_MAX, 11259, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2826, UINT16_MAX, UINT16_MAX, 11261, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1508, UINT16_MAX, UINT16_MAX, 11263, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3305, UINT16_MAX, UINT16_MAX, 11265, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1509, UINT16_MAX, UINT16_MAX, 11267, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1510, UINT16_MAX, UINT16_MAX, 11269, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2908, UINT16_MAX, UINT16_MAX, 11271, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1511, UINT16_MAX, UINT16_MAX, 11273, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2925, UINT16_MAX, UINT16_MAX, 11275, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3312, UINT16_MAX, UINT16_MAX, 11277, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2834, UINT16_MAX, UINT16_MAX, 11279, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 0, UINT16_MAX, 11281, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 1, UINT16_MAX, 11283, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2, UINT16_MAX, 11285, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 3, UINT16_MAX, 11287, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 4, UINT16_MAX, 11289, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 5, UINT16_MAX, 11291, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 6, UINT16_MAX, 11293, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7, UINT16_MAX, 11295, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 8, UINT16_MAX, 11297, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 9, UINT16_MAX, 11299, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 10, UINT16_MAX, 11301, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 11, UINT16_MAX, 11303, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 12, UINT16_MAX, 11305, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 13, UINT16_MAX, 11307, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 14, UINT16_MAX, 11309, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 15, UINT16_MAX, 11311, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 16, UINT16_MAX, 11313, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 17, UINT16_MAX, 11315, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 18, UINT16_MAX, 11317, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 19, UINT16_MAX, 11319, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 20, UINT16_MAX, 11321, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 21, UINT16_MAX, 11323, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 22, UINT16_MAX, 11325, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 23, UINT16_MAX, 11327, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 24, UINT16_MAX, 11329, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 25, UINT16_MAX, 11331, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7217, UINT16_MAX, 11333, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7218, UINT16_MAX, 11335, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7219, UINT16_MAX, UINT16_MAX, 11337, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7220, UINT16_MAX, UINT16_MAX, 11339, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2846, UINT16_MAX, UINT16_MAX, 11341, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7221, UINT16_MAX, UINT16_MAX, 11343, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7222, UINT16_MAX, UINT16_MAX, 11345, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7223, UINT16_MAX, UINT16_MAX, 11347, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7224, UINT16_MAX, UINT16_MAX, 11349, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 915, UINT16_MAX, UINT16_MAX, 11351, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7225, UINT16_MAX, UINT16_MAX, 11353, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7226, UINT16_MAX, UINT16_MAX, 11355, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7227, UINT16_MAX, UINT16_MAX, 11357, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7228, UINT16_MAX, UINT16_MAX, 11359, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7229, UINT16_MAX, UINT16_MAX, 11361, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7230, UINT16_MAX, UINT16_MAX, 11363, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7231, UINT16_MAX, UINT16_MAX, 11365, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2847, UINT16_MAX, UINT16_MAX, 11367, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7232, UINT16_MAX, UINT16_MAX, 11369, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7233, UINT16_MAX, UINT16_MAX, 11371, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 917, UINT16_MAX, UINT16_MAX, 11373, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7234, UINT16_MAX, UINT16_MAX, 11375, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 897, UINT16_MAX, UINT16_MAX, 11377, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7235, UINT16_MAX, UINT16_MAX, 11379, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7236, UINT16_MAX, UINT16_MAX, 11381, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7237, UINT16_MAX, UINT16_MAX, 11383, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2835, UINT16_MAX, UINT16_MAX, 11385, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7238, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 845, UINT16_MAX, 11387, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 846, UINT16_MAX, 11389, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 847, UINT16_MAX, 11391, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 848, UINT16_MAX, 11393, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 849, UINT16_MAX, 11395, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 850, UINT16_MAX, 11397, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 851, UINT16_MAX, 11399, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 852, UINT16_MAX, 11401, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 807, UINT16_MAX, 11403, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 853, UINT16_MAX, 11405, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 854, UINT16_MAX, 11407, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 35, UINT16_MAX, 11409, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 855, UINT16_MAX, 11411, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 856, UINT16_MAX, 11413, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 857, UINT16_MAX, 11415, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 858, UINT16_MAX, 11417, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 859, UINT16_MAX, 11419, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 914, UINT16_MAX, 11421, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 860, UINT16_MAX, 11423, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 861, UINT16_MAX, 11425, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 862, UINT16_MAX, 11427, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 863, UINT16_MAX, 11429, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 864, UINT16_MAX, 11431, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 865, UINT16_MAX, 11433, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 866, UINT16_MAX, 11435, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SM, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_FONT, 7239, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, true, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7240, UINT16_MAX, 11437, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7241, UINT16_MAX, 11439, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7242, UINT16_MAX, 11441, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7243, UINT16_MAX, 11443, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7244, UINT16_MAX, 11445, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7245, UINT16_MAX, 11447, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7219, UINT16_MAX, UINT16_MAX, 11449, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7220, UINT16_MAX, UINT16_MAX, 11451, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2846, UINT16_MAX, UINT16_MAX, 11453, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7221, UINT16_MAX, UINT16_MAX, 11455, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7222, UINT16_MAX, UINT16_MAX, 11457, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7223, UINT16_MAX, UINT16_MAX, 11459, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7224, UINT16_MAX, UINT16_MAX, 11461, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 915, UINT16_MAX, UINT16_MAX, 11463, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7225, UINT16_MAX, UINT16_MAX, 11465, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7226, UINT16_MAX, UINT16_MAX, 11467, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7227, UINT16_MAX, UINT16_MAX, 11469, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7228, UINT16_MAX, UINT16_MAX, 11471, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7229, UINT16_MAX, UINT16_MAX, 11473, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7230, UINT16_MAX, UINT16_MAX, 11475, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7231, UINT16_MAX, UINT16_MAX, 11477, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2847, UINT16_MAX, UINT16_MAX, 11479, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7232, UINT16_MAX, UINT16_MAX, 11481, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7233, UINT16_MAX, UINT16_MAX, 11483, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 917, UINT16_MAX, UINT16_MAX, 11485, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7234, UINT16_MAX, UINT16_MAX, 11487, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 897, UINT16_MAX, UINT16_MAX, 11489, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7235, UINT16_MAX, UINT16_MAX, 11491, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7236, UINT16_MAX, UINT16_MAX, 11493, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7237, UINT16_MAX, UINT16_MAX, 11495, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2835, UINT16_MAX, UINT16_MAX, 11497, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 845, UINT16_MAX, 11499, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 846, UINT16_MAX, 11501, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 847, UINT16_MAX, 11503, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 848, UINT16_MAX, 11505, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 849, UINT16_MAX, 11507, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 850, UINT16_MAX, 11509, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 851, UINT16_MAX, 11511, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 852, UINT16_MAX, 11513, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 807, UINT16_MAX, 11515, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 853, UINT16_MAX, 11517, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 854, UINT16_MAX, 11519, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 35, UINT16_MAX, 11521, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 855, UINT16_MAX, 11523, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 856, UINT16_MAX, 11525, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 857, UINT16_MAX, 11527, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 858, UINT16_MAX, 11529, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 859, UINT16_MAX, 11531, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 914, UINT16_MAX, 11533, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 860, UINT16_MAX, 11535, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 861, UINT16_MAX, 11537, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 862, UINT16_MAX, 11539, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 863, UINT16_MAX, 11541, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 864, UINT16_MAX, 11543, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 865, UINT16_MAX, 11545, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 866, UINT16_MAX, 11547, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7240, UINT16_MAX, 11549, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7241, UINT16_MAX, 11551, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7242, UINT16_MAX, 11553, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7243, UINT16_MAX, 11555, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7244, UINT16_MAX, 11557, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7245, UINT16_MAX, 11559, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7219, UINT16_MAX, UINT16_MAX, 11561, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7220, UINT16_MAX, UINT16_MAX, 11563, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2846, UINT16_MAX, UINT16_MAX, 11565, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7221, UINT16_MAX, UINT16_MAX, 11567, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7222, UINT16_MAX, UINT16_MAX, 11569, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7223, UINT16_MAX, UINT16_MAX, 11571, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7224, UINT16_MAX, UINT16_MAX, 11573, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 915, UINT16_MAX, UINT16_MAX, 11575, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7225, UINT16_MAX, UINT16_MAX, 11577, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7226, UINT16_MAX, UINT16_MAX, 11579, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7227, UINT16_MAX, UINT16_MAX, 11581, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7228, UINT16_MAX, UINT16_MAX, 11583, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7229, UINT16_MAX, UINT16_MAX, 11585, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7230, UINT16_MAX, UINT16_MAX, 11587, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7231, UINT16_MAX, UINT16_MAX, 11589, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2847, UINT16_MAX, UINT16_MAX, 11591, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7232, UINT16_MAX, UINT16_MAX, 11593, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7233, UINT16_MAX, UINT16_MAX, 11595, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 917, UINT16_MAX, UINT16_MAX, 11597, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7234, UINT16_MAX, UINT16_MAX, 11599, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 897, UINT16_MAX, UINT16_MAX, 11601, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7235, UINT16_MAX, UINT16_MAX, 11603, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7236, UINT16_MAX, UINT16_MAX, 11605, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7237, UINT16_MAX, UINT16_MAX, 11607, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2835, UINT16_MAX, UINT16_MAX, 11609, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 845, UINT16_MAX, 11611, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 846, UINT16_MAX, 11613, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 847, UINT16_MAX, 11615, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 848, UINT16_MAX, 11617, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 849, UINT16_MAX, 11619, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 850, UINT16_MAX, 11621, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 851, UINT16_MAX, 11623, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 852, UINT16_MAX, 11625, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 807, UINT16_MAX, 11627, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 853, UINT16_MAX, 11629, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 854, UINT16_MAX, 11631, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 35, UINT16_MAX, 11633, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 855, UINT16_MAX, 11635, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 856, UINT16_MAX, 11637, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 857, UINT16_MAX, 11639, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 858, UINT16_MAX, 11641, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 859, UINT16_MAX, 11643, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 914, UINT16_MAX, 11645, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 860, UINT16_MAX, 11647, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 861, UINT16_MAX, 11649, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 862, UINT16_MAX, 11651, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 863, UINT16_MAX, 11653, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 864, UINT16_MAX, 11655, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 865, UINT16_MAX, 11657, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 866, UINT16_MAX, 11659, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7240, UINT16_MAX, 11661, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7241, UINT16_MAX, 11663, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7242, UINT16_MAX, 11665, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7243, UINT16_MAX, 11667, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7244, UINT16_MAX, 11669, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7245, UINT16_MAX, 11671, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7219, UINT16_MAX, UINT16_MAX, 11673, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7220, UINT16_MAX, UINT16_MAX, 11675, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2846, UINT16_MAX, UINT16_MAX, 11677, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7221, UINT16_MAX, UINT16_MAX, 11679, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7222, UINT16_MAX, UINT16_MAX, 11681, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7223, UINT16_MAX, UINT16_MAX, 11683, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7224, UINT16_MAX, UINT16_MAX, 11685, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 915, UINT16_MAX, UINT16_MAX, 11687, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7225, UINT16_MAX, UINT16_MAX, 11689, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7226, UINT16_MAX, UINT16_MAX, 11691, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7227, UINT16_MAX, UINT16_MAX, 11693, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7228, UINT16_MAX, UINT16_MAX, 11695, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7229, UINT16_MAX, UINT16_MAX, 11697, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7230, UINT16_MAX, UINT16_MAX, 11699, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7231, UINT16_MAX, UINT16_MAX, 11701, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2847, UINT16_MAX, UINT16_MAX, 11703, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7232, UINT16_MAX, UINT16_MAX, 11705, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7233, UINT16_MAX, UINT16_MAX, 11707, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 917, UINT16_MAX, UINT16_MAX, 11709, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7234, UINT16_MAX, UINT16_MAX, 11711, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 897, UINT16_MAX, UINT16_MAX, 11713, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7235, UINT16_MAX, UINT16_MAX, 11715, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7236, UINT16_MAX, UINT16_MAX, 11717, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7237, UINT16_MAX, UINT16_MAX, 11719, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2835, UINT16_MAX, UINT16_MAX, 11721, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 845, UINT16_MAX, 11723, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 846, UINT16_MAX, 11725, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 847, UINT16_MAX, 11727, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 848, UINT16_MAX, 11729, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 849, UINT16_MAX, 11731, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 850, UINT16_MAX, 11733, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 851, UINT16_MAX, 11735, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 852, UINT16_MAX, 11737, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 807, UINT16_MAX, 11739, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 853, UINT16_MAX, 11741, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 854, UINT16_MAX, 11743, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 35, UINT16_MAX, 11745, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 855, UINT16_MAX, 11747, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 856, UINT16_MAX, 11749, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 857, UINT16_MAX, 11751, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 858, UINT16_MAX, 11753, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 859, UINT16_MAX, 11755, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 914, UINT16_MAX, 11757, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 860, UINT16_MAX, 11759, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 861, UINT16_MAX, 11761, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 862, UINT16_MAX, 11763, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 863, UINT16_MAX, 11765, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 864, UINT16_MAX, 11767, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 865, UINT16_MAX, 11769, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 866, UINT16_MAX, 11771, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7240, UINT16_MAX, 11773, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7241, UINT16_MAX, 11775, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7242, UINT16_MAX, 11777, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7243, UINT16_MAX, 11779, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7244, UINT16_MAX, 11781, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7245, UINT16_MAX, 11783, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7219, UINT16_MAX, UINT16_MAX, 11785, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7220, UINT16_MAX, UINT16_MAX, 11787, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2846, UINT16_MAX, UINT16_MAX, 11789, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7221, UINT16_MAX, UINT16_MAX, 11791, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7222, UINT16_MAX, UINT16_MAX, 11793, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7223, UINT16_MAX, UINT16_MAX, 11795, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7224, UINT16_MAX, UINT16_MAX, 11797, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 915, UINT16_MAX, UINT16_MAX, 11799, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7225, UINT16_MAX, UINT16_MAX, 11801, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7226, UINT16_MAX, UINT16_MAX, 11803, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7227, UINT16_MAX, UINT16_MAX, 11805, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7228, UINT16_MAX, UINT16_MAX, 11807, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7229, UINT16_MAX, UINT16_MAX, 11809, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7230, UINT16_MAX, UINT16_MAX, 11811, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7231, UINT16_MAX, UINT16_MAX, 11813, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2847, UINT16_MAX, UINT16_MAX, 11815, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7232, UINT16_MAX, UINT16_MAX, 11817, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7233, UINT16_MAX, UINT16_MAX, 11819, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 917, UINT16_MAX, UINT16_MAX, 11821, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7234, UINT16_MAX, UINT16_MAX, 11823, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 897, UINT16_MAX, UINT16_MAX, 11825, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7235, UINT16_MAX, UINT16_MAX, 11827, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7236, UINT16_MAX, UINT16_MAX, 11829, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7237, UINT16_MAX, UINT16_MAX, 11831, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 2835, UINT16_MAX, UINT16_MAX, 11833, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 845, UINT16_MAX, 11835, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 846, UINT16_MAX, 11837, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 847, UINT16_MAX, 11839, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 848, UINT16_MAX, 11841, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 849, UINT16_MAX, 11843, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 850, UINT16_MAX, 11845, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 851, UINT16_MAX, 11847, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 852, UINT16_MAX, 11849, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 807, UINT16_MAX, 11851, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 853, UINT16_MAX, 11853, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 854, UINT16_MAX, 11855, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 35, UINT16_MAX, 11857, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 855, UINT16_MAX, 11859, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 856, UINT16_MAX, 11861, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 857, UINT16_MAX, 11863, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 858, UINT16_MAX, 11865, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 859, UINT16_MAX, 11867, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 914, UINT16_MAX, 11869, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 860, UINT16_MAX, 11871, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 861, UINT16_MAX, 11873, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 862, UINT16_MAX, 11875, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 863, UINT16_MAX, 11877, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 864, UINT16_MAX, 11879, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 865, UINT16_MAX, 11881, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 866, UINT16_MAX, 11883, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7240, UINT16_MAX, 11885, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7241, UINT16_MAX, 11887, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7242, UINT16_MAX, 11889, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7243, UINT16_MAX, 11891, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7244, UINT16_MAX, 11893, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7245, UINT16_MAX, 11895, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 7246, UINT16_MAX, UINT16_MAX, 11897, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_FONT, 904, UINT16_MAX, 11899, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2792, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 38, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 31, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 32, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2776, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2777, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2779, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2780, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2781, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 38, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 31, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 32, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2776, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2777, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2779, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2780, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2781, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7149, UINT16_MAX, 7149, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7151, UINT16_MAX, 7151, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7153, UINT16_MAX, 7153, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7155, UINT16_MAX, 7155, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7157, UINT16_MAX, 7157, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7159, UINT16_MAX, 7159, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7161, UINT16_MAX, 7161, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7163, UINT16_MAX, 7163, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7165, UINT16_MAX, 7165, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7167, UINT16_MAX, 7167, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7169, UINT16_MAX, 7169, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7171, UINT16_MAX, 7171, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7173, UINT16_MAX, 7173, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7175, UINT16_MAX, 7175, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7177, UINT16_MAX, 7177, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7179, UINT16_MAX, 7179, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7181, UINT16_MAX, 7181, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7183, UINT16_MAX, 7183, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7185, UINT16_MAX, 7185, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7187, UINT16_MAX, 7187, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7189, UINT16_MAX, 7189, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7191, UINT16_MAX, 7191, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7193, UINT16_MAX, 7193, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7195, UINT16_MAX, 7195, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7197, UINT16_MAX, 7197, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7199, UINT16_MAX, 7199, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7201, UINT16_MAX, 7201, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7203, UINT16_MAX, 7203, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7205, UINT16_MAX, 7205, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7207, UINT16_MAX, 7207, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7209, UINT16_MAX, 7209, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7211, UINT16_MAX, 7211, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7213, UINT16_MAX, 7213, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7215, UINT16_MAX, 7215, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9336, UINT16_MAX, 9336, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9338, UINT16_MAX, 9338, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9340, UINT16_MAX, 9340, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9342, UINT16_MAX, 9342, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9344, UINT16_MAX, 9344, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9346, UINT16_MAX, 9346, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9348, UINT16_MAX, 9348, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9350, UINT16_MAX, 9350, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9352, UINT16_MAX, 9352, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9354, UINT16_MAX, 9354, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9356, UINT16_MAX, 9356, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9358, UINT16_MAX, 9358, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9360, UINT16_MAX, 9360, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9362, UINT16_MAX, 9362, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9364, UINT16_MAX, 9364, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9366, UINT16_MAX, 9366, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9368, UINT16_MAX, 9368, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9370, UINT16_MAX, 9370, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9372, UINT16_MAX, 9372, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9374, UINT16_MAX, 9374, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9376, UINT16_MAX, 9376, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9378, UINT16_MAX, 9378, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9380, UINT16_MAX, 9380, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9382, UINT16_MAX, 9382, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9384, UINT16_MAX, 9384, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9386, UINT16_MAX, 9386, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9388, UINT16_MAX, 9388, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9390, UINT16_MAX, 9390, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9392, UINT16_MAX, 9392, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9394, UINT16_MAX, 9394, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9396, UINT16_MAX, 9396, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9398, UINT16_MAX, 9398, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9400, UINT16_MAX, 9400, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 9402, UINT16_MAX, 9402, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6550, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6551, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6555, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6558, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6577, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6561, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6556, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6566, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6578, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6572, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6573, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6574, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6575, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6562, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6568, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6570, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6564, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6571, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6560, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6563, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6553, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6554, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6557, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6559, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6565, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6567, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6569, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 7217, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 5760, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 7218, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 7219, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6576, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6576, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6551, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6555, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6558, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6577, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6561, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6556, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6566, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6578, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6573, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6574, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6575, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6562, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6568, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6570, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6564, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6571, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6560, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6563, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6553, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6554, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6557, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6559, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6565, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6567, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6569, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15412, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15414, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15416, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15418, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15420, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15422, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15424, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15426, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15428, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15430, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15432, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23626, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23629, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23632, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23635, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23638, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23641, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23644, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23647, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23650, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23653, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23656, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23659, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23662, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23665, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23668, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23671, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23674, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23677, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23680, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23683, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23686, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23689, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23692, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23695, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23698, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23701, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23704, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2795, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1463, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 15515, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 15517, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1446, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1448, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 2795, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1449, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1450, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 2820, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1452, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1453, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1454, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1455, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1456, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1457, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1458, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1459, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1460, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1462, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 2809, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1463, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3288, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1464, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1465, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 2891, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1466, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 2908, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3295, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 2817, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 15519, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 15521, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 15523, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 23717, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 15528, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUPER, 15530, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUPER, 15532, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 15534, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_REGIONAL_INDICATOR}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 15536, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 15538, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 4278, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3489, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7348, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7349, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7350, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3432, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7351, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7352, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3869, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7353, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7354, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7355, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 5399, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7356, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7357, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7358, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7359, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7360, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7361, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3525, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7362, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7363, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7364, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7365, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7366, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7367, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3426, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3861, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7368, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 4191, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3864, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 4192, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7369, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3581, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7370, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7371, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7372, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7373, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7374, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 4174, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3499, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7375, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7376, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7377, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7378, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23763, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23766, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23769, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23772, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23781, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23784, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23787, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 7406, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 7407, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_E_MODIFIER}, - {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_E_BASE_GAZ}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7408, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7409, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7410, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7411, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7413, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7414, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7415, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7416, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7417, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7418, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7419, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7420, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7422, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7423, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7424, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7425, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7427, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7428, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7358, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7429, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7431, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7432, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7433, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7434, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7435, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3442, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7437, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7438, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7439, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7440, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7376, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7441, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7442, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7443, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7444, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7445, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7446, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7447, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7448, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7449, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7450, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7452, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7453, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7454, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7455, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7457, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7458, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7459, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7460, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7461, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7462, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7463, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7464, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7465, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7466, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7467, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7468, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7469, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7470, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7471, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7472, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7473, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7474, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7475, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7476, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7477, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7478, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7479, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7480, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7481, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7482, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7483, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7484, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7485, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7487, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7488, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7489, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7351, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7490, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7491, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7492, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7494, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7496, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7497, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7498, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7499, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7500, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7501, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7502, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7503, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7504, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7505, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7507, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2793, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2794, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2795, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2796, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2797, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_ND, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_FONT, 2798, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7247, UINT16_MAX, 7247, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7249, UINT16_MAX, 7249, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7251, UINT16_MAX, 7251, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7253, UINT16_MAX, 7253, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7255, UINT16_MAX, 7255, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7257, UINT16_MAX, 7257, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7259, UINT16_MAX, 7259, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7261, UINT16_MAX, 7261, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7263, UINT16_MAX, 7263, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7265, UINT16_MAX, 7265, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7267, UINT16_MAX, 7267, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7269, UINT16_MAX, 7269, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7271, UINT16_MAX, 7271, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7273, UINT16_MAX, 7273, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7275, UINT16_MAX, 7275, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7277, UINT16_MAX, 7277, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7279, UINT16_MAX, 7279, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7281, UINT16_MAX, 7281, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7283, UINT16_MAX, 7283, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7285, UINT16_MAX, 7285, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7287, UINT16_MAX, 7287, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7289, UINT16_MAX, 7289, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7291, UINT16_MAX, 7291, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7293, UINT16_MAX, 7293, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7295, UINT16_MAX, 7295, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7297, UINT16_MAX, 7297, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7299, UINT16_MAX, 7299, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7301, UINT16_MAX, 7301, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7303, UINT16_MAX, 7303, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7305, UINT16_MAX, 7305, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7307, UINT16_MAX, 7307, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7309, UINT16_MAX, 7309, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7311, UINT16_MAX, 7311, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LU, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, 7313, UINT16_MAX, 7313, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11901, UINT16_MAX, 11901, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11903, UINT16_MAX, 11903, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11905, UINT16_MAX, 11905, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11907, UINT16_MAX, 11907, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11909, UINT16_MAX, 11909, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11911, UINT16_MAX, 11911, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11913, UINT16_MAX, 11913, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11915, UINT16_MAX, 11915, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11917, UINT16_MAX, 11917, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11919, UINT16_MAX, 11919, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11921, UINT16_MAX, 11921, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11923, UINT16_MAX, 11923, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11925, UINT16_MAX, 11925, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11927, UINT16_MAX, 11927, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11929, UINT16_MAX, 11929, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11931, UINT16_MAX, 11931, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11933, UINT16_MAX, 11933, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11935, UINT16_MAX, 11935, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11937, UINT16_MAX, 11937, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11939, UINT16_MAX, 11939, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11941, UINT16_MAX, 11941, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11943, UINT16_MAX, 11943, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11945, UINT16_MAX, 11945, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11947, UINT16_MAX, 11947, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11949, UINT16_MAX, 11949, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11951, UINT16_MAX, 11951, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11953, UINT16_MAX, 11953, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11955, UINT16_MAX, 11955, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11957, UINT16_MAX, 11957, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11959, UINT16_MAX, 11959, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11961, UINT16_MAX, 11961, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11963, UINT16_MAX, 11963, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11965, UINT16_MAX, 11965, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LL, 0, UTF8PROC_BIDI_CLASS_R, 0, UINT16_MAX, UINT16_MAX, 11967, UINT16_MAX, 11967, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6580, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6581, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6585, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6588, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6607, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6591, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6586, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6596, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6608, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6602, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6603, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6604, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6605, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6592, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6598, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6600, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6594, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6601, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6590, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6593, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6583, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6584, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6587, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6589, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6595, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6597, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6599, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 7315, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 5790, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 7316, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 7317, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_AL, UTF8PROC_DECOMP_TYPE_FONT, 6606, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15510, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15512, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15514, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15516, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15518, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15520, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15522, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15524, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15526, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15528, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_NO, 0, UTF8PROC_BIDI_CLASS_EN, UTF8PROC_DECOMP_TYPE_COMPAT, 15530, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23724, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23727, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23730, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23733, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23736, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23739, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23742, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23745, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23748, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23751, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23754, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23757, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23760, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23763, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23766, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23769, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23772, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23775, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23781, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23784, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23787, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23790, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23793, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23796, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23799, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23802, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 2812, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 1508, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 15613, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 15615, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1491, UINT16_MAX, UINT16_MAX, 11969, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1493, UINT16_MAX, UINT16_MAX, 11971, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 2812, UINT16_MAX, UINT16_MAX, 11973, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1494, UINT16_MAX, UINT16_MAX, 11975, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1495, UINT16_MAX, UINT16_MAX, 11977, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 2837, UINT16_MAX, UINT16_MAX, 11979, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1497, UINT16_MAX, UINT16_MAX, 11981, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1498, UINT16_MAX, UINT16_MAX, 11983, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1499, UINT16_MAX, UINT16_MAX, 11985, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1500, UINT16_MAX, UINT16_MAX, 11987, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1501, UINT16_MAX, UINT16_MAX, 11989, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1502, UINT16_MAX, UINT16_MAX, 11991, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1503, UINT16_MAX, UINT16_MAX, 11993, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1504, UINT16_MAX, UINT16_MAX, 11995, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1505, UINT16_MAX, UINT16_MAX, 11997, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1507, UINT16_MAX, UINT16_MAX, 11999, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 2826, UINT16_MAX, UINT16_MAX, 12001, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1508, UINT16_MAX, UINT16_MAX, 12003, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3305, UINT16_MAX, UINT16_MAX, 12005, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1509, UINT16_MAX, UINT16_MAX, 12007, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1510, UINT16_MAX, UINT16_MAX, 12009, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 2908, UINT16_MAX, UINT16_MAX, 12011, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 1511, UINT16_MAX, UINT16_MAX, 12013, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 2925, UINT16_MAX, UINT16_MAX, 12015, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3312, UINT16_MAX, UINT16_MAX, 12017, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 2834, UINT16_MAX, UINT16_MAX, 12019, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 15617, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 13070, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 15619, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 15621, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 23815, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 15626, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12021, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12023, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12025, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12027, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12029, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12031, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12033, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12035, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12037, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12039, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12041, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12043, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12045, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12047, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12049, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12051, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12053, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12055, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12057, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12059, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12061, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12063, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12065, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12067, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12069, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12071, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUPER, 15628, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUPER, 15630, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_ON, UTF8PROC_DECOMP_TYPE_SUPER, 15632, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12073, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12075, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12077, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12079, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12081, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12083, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12085, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12087, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12089, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12091, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12093, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12095, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12097, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12099, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12101, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12103, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12105, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12107, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12109, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12111, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12113, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12115, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12117, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12119, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12121, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, 12123, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 15634, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 1, 0, UTF8PROC_BOUNDCLASS_REGIONAL_INDICATOR}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 15636, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 15638, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 4295, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3506, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7448, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7449, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7450, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3449, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7451, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7452, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3886, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7453, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7454, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7455, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 5429, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7456, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7457, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7458, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7459, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7460, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7461, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3542, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7462, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7463, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7464, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7465, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7466, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7467, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3443, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3878, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7468, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 4208, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3881, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 4209, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7469, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3598, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7470, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7471, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7472, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7473, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7474, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 4191, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 3516, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7475, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7476, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7477, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_SQUARE, 7478, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23863, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23866, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23869, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23872, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23875, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23878, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23881, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23884, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_COMPAT, 23887, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 7506, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SO, 0, UTF8PROC_BIDI_CLASS_L, UTF8PROC_DECOMP_TYPE_CIRCLE, 7507, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTENDED_PICTOGRAPHIC}, + {UTF8PROC_CATEGORY_SK, 0, UTF8PROC_BIDI_CLASS_ON, 0, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_EXTEND}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7508, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7509, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7510, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7512, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7511, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7513, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7514, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3468, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7515, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7516, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7517, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7518, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7519, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7521, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7520, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7522, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7523, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7524, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7525, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7526, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7527, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7528, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7458, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7529, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7530, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7531, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7532, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7533, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7534, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7535, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3459, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7537, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7538, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7539, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7540, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7476, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7541, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3480, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7542, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7543, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7544, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7545, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7546, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7547, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7548, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7549, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7550, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7552, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7553, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7554, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7555, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7556, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7557, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7558, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7559, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7560, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7561, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7562, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7563, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7564, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7565, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7566, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -13098,6 +15012,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7576, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7577, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7578, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7579, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7580, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7581, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7582, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -13107,14 +15022,14 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7587, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7588, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7589, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7451, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7590, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7591, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7592, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7593, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7594, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7595, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7596, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7597, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7598, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7599, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7600, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7601, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -13122,44 +15037,45 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7603, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7604, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7605, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7606, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7607, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7608, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7609, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7610, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7611, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7612, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7613, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7614, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3485, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7615, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7616, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7617, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7618, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7619, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7620, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7621, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7622, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7623, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7624, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7625, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7626, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7627, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7628, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7629, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7630, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7631, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7632, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7633, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7634, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7636, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7635, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7637, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7638, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7639, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7640, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7641, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3497, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7643, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7645, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7646, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7647, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7648, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7650, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7651, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7652, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7653, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7654, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -13167,35 +15083,41 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7656, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7657, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7658, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7659, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7660, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7661, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7662, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7663, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7664, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7665, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7666, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7667, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7668, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7669, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7670, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7671, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7672, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7673, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7674, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7675, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7676, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7677, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7678, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7679, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7680, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7681, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7682, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7683, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7684, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7686, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7685, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7687, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7688, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7689, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7690, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7691, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7692, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7693, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7694, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7695, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7696, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7697, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7699, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7700, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -13209,48 +15131,55 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7708, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7709, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7710, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7711, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7712, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7713, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7715, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7714, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7716, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7717, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7718, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7719, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7720, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7722, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7723, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7724, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7725, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7726, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7727, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7728, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7730, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7729, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7731, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7732, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7733, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7734, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7735, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7736, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7737, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7738, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7739, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7740, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7741, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7742, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7743, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7745, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7747, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7749, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7748, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7750, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7751, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7752, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7753, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7754, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7755, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7756, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7757, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7758, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7759, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7760, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7761, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7762, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7763, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7764, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7766, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7765, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7767, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7768, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7769, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7770, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7771, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7773, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7774, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -13259,6 +15188,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7777, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7778, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7779, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7780, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7781, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7783, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7784, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -13268,10 +15198,11 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7790, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7791, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7793, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7794, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7795, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7796, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7798, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7797, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7799, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7800, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7801, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7802, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7803, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -13279,93 +15210,82 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7805, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7806, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7807, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7808, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7809, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7811, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7810, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7812, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7813, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7815, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7816, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7817, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7818, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7819, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7820, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7821, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7822, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7823, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7824, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7825, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7826, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7828, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7829, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7830, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7831, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7832, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7833, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7834, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7835, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7836, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7837, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7838, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7840, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7839, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7841, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7842, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7844, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7843, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7845, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7846, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7847, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7848, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7849, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7850, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7851, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7852, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7853, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7854, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7855, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7857, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7858, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7859, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7860, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7861, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7862, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7863, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7864, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7865, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7866, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7867, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7868, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7869, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7870, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7871, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7872, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7873, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7874, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3570, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7875, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7876, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7877, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7878, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7879, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7880, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7881, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7882, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7883, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7884, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7886, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7887, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7888, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3577, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7889, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7890, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7891, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7892, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7893, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7894, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7895, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7897, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7896, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7898, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7899, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7900, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7901, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7902, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7903, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7904, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7905, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7906, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7907, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7909, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7910, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7911, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7912, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7914, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7913, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7915, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7916, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7917, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -13373,6 +15293,7 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7919, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7920, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7921, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7922, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7923, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7924, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7925, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, @@ -13382,45 +15303,128 @@ const utf8proc_property_t utf8proc_properties[] = { {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7930, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7931, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7932, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7933, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7934, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7935, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7936, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7937, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7938, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7939, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7941, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7940, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7942, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7944, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7945, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7946, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7947, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7948, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7949, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7950, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7951, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7952, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7953, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7954, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7956, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7955, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7957, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7958, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7959, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7960, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7961, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7962, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7963, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7964, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7965, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7966, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7967, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7968, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3625, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7969, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7970, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3629, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7971, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7972, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7973, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7974, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, - {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3634, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3587, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7975, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7977, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7978, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7979, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7980, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7981, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7982, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7984, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7986, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7987, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7988, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3594, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7989, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7991, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7992, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7993, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7994, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7995, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7997, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 7999, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8000, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8001, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8002, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8004, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8005, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8007, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8009, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8010, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8011, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8012, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8014, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8015, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8016, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8017, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8018, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8019, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8020, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8021, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8023, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8024, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8025, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8026, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8028, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8029, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8030, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8031, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8032, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8034, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8036, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8037, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8038, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8039, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8041, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8042, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8044, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8045, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8047, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8048, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8049, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8050, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8051, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8052, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8053, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8054, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8056, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8057, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8058, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8059, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8060, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8061, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8063, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8064, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8066, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8068, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3642, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8070, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3646, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8071, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8072, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8073, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8074, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 3651, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, + {UTF8PROC_CATEGORY_LO, 0, UTF8PROC_BIDI_CLASS_L, 0, 8075, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX, false, false, false, false, 2, 0, UTF8PROC_BOUNDCLASS_OTHER}, }; -const utf8proc_uint16_t utf8proc_combinations[] = { +static const utf8proc_uint16_t utf8proc_combinations[] = { 0, 46, 192, 193, 194, 195, 196, 197, 0, 256, 258, 260, 550, 461, 0, 0, 512, 514, 0, 0, 0, 0, 0, 0, 0, @@ -14373,14 +16377,15 @@ const utf8proc_uint16_t utf8proc_combinations[] = { 1, 5307, 1, 5308, 1, 5310, 68, 69, 1, 5562, 68, 69, 1, 5563, -70, 71, 1, 53598, -70, 71, 1, 53599, -72, 81, 1, 53600, - 1, 53601, 1, 53602, 1, 53603, 1, 53604, -70, 71, 1, 53691, -70, 71, 1, 53692, -72, 75, 1, 53693, 1, 53695, -72, 75, - 1, 53694, 1, 53696, +70, 71, 1, 6456, +72, 73, 1, 53598, +72, 73, 1, 53599, +74, 83, + 1, 53600, 1, 53601, 1, 53602, 1, 53603, 1, 53604, +72, 73, 1, 53691, +72, 73, 1, 53692, +74, 77, 1, 53693, + 1, 53695, +74, 77, 1, 53694, 1, 53696, }; diff --git a/docs/source/initialsetup/compilingmame.rst b/docs/source/initialsetup/compilingmame.rst index 51d63588149..f5be3a636f9 100644 --- a/docs/source/initialsetup/compilingmame.rst +++ b/docs/source/initialsetup/compilingmame.rst @@ -269,14 +269,19 @@ Apple macOS You’ll need a few prerequisites to get started. Make sure you’re on OS X 10.14 Mojave or later for Intel Macs or macOS 11.0 Big Sur for Apple Silicon. You will -need SDL2 2.0.4 or later for Intel or SDL2 2.0.14 on Apple Silicon. - -* Install **Xcode** from the Mac App Store or `ADC <https://developer.apple.com/download/more/>`_ (AppleID required). -* To find the corresponding Xcode for your MacOS release please visit `xcodereleases.com <https://xcodereleases.com>`_ to find the latest version of Xcode available to you. +need SDL2 2.0.4 or later for Intel or SDL2 2.0.14 on Apple Silicon. You’ll also +need to install Python 3. + +* Install **Xcode** from the Mac App Store or + `ADC <https://developer.apple.com/download/more/>`_ (AppleID required). +* To find the corresponding Xcode for your MacOS release please visit + `xcodereleases.com <https://xcodereleases.com>`_ to find the latest version of + Xcode available to you. * Launch **Xcode**. It will download a few additional prerequisites. Let this run through before proceeding. -* Once that’s done, quit **Xcode** and open a **Terminal** window -* Type **xcode-select --install** to install additional tools necessary for MAME (also available as a package on ADC). +* Once that’s done, quit **Xcode** and open a **Terminal** window. +* Type **xcode-select --install** to install additional tools necessary for MAME + (also available as a package on ADC). Next you’ll need to get SDL2 installed. @@ -288,7 +293,18 @@ Next you’ll need to get SDL2 installed. **SDL2.framework** folder from the SDL disk image into the **Frameworks** folder. You will have to authenticate with your user password. -Lastly to begin compiling, use Terminal to navigate to where you have the MAME +Now get Python 3 set up: + +* Go to the `official Python site <https://www.python.org/>`_ and click the link + to the download page for the current version (this was + `Python 3.10.0 <https://www.python.org/downloads/release/python-3100/>`_ at + the time of writing). +* Scroll down to the “Files” section, and download the macOS version (called + “macOS 64-bit universal2 installer” or similar). +* Once the package downloads, open it and follow the standard installation + process. + +Finally to begin compiling, use Terminal to navigate to where you have the MAME source tree (*cd* command) and follow the normal compilation instructions from above in All Platforms. @@ -405,15 +421,6 @@ and the **python3-pip/python-pip** packages: sudo apt-get install python3-sphinx python3-pip pip3 install sphinxcontrib-svg2pdfconverter -or - -.. code-block:: bash - - sudo apt-get install python-sphinx python-pip - pip install sphinxcontrib-svg2pdfconverter - -depending on whether you’re using Python 3 or Python 2. - On Debian, you’ll need to install the **librsvg2-bin** package: .. code-block:: bash @@ -480,7 +487,7 @@ OVERRIDE_LD or C++ compiler command is used to invoke the linker. (This sets the target linker command when cross-compiling.) PYTHON_EXECUTABLE - Set the Python interpreter command. You need Python 2.7 or Python 3 to build + Set the Python interpreter command. You need Python 3.2 or later to build MAME. CROSS_BUILD Set to **1** to use separate host and target compilers and linkers, as diff --git a/hash/a2600.xml b/hash/a2600.xml index 416e78cc906..007cd65f059 100644 --- a/hash/a2600.xml +++ b/hash/a2600.xml @@ -270,7 +270,7 @@ X-1414 : Streetracer <description>3-D Genesis (Prototype)</description> <year>1983</year> <publisher>Amiga</publisher> - <info name="programmers" value="Jerry Lawson, Dan Mcelroy" /> + <info name="programmer" value="Jerry Lawson, Dan Mcelroy" /> <sharedfeat name="compatibility" value="NTSC"/> <part name="cart" interface="a2600_cart"> <feature name="slot" value="a26_f8" /> diff --git a/hash/apc.xml b/hash/apc.xml index 2b0f5724e82..1675a93de62 100644 --- a/hash/apc.xml +++ b/hash/apc.xml @@ -21,7 +21,7 @@ license:CC0 <description>Program Dispatcher for CP/M(Ver 1.7)</description> <year>1983</year> <publisher>Metasoft Corporation</publisher> - <info name="Usage Notes" value="Needs CP/M to run" /> + <info name="usage" value="Needs CP/M to run" /> <part name="flop1" interface="floppy_8"> <dataarea name="flop" size="247485"> <rom name="progdisp.imd" size="247485" crc="1439ffbc" sha1="f27c3c078c7845ac0a6f19d9922d9fd9a1fc6371" status="baddump"/> @@ -175,7 +175,7 @@ license:CC0 <description>MultiPlan</description> <year>1982</year> <publisher>Microsoft</publisher> - <info name="Usage Notes" value="Needs MS-DOS" /> + <info name="usage" value="Needs MS-DOS" /> <part name="flop1" interface="floppy_8"> <dataarea name="flop" size="125376"> <rom name="multplan.imd" size="125376" crc="e1a83ed0" sha1="847ec2c647574284bb45790bf3536cafa317ca5f"/> @@ -221,7 +221,7 @@ license:CC0 <description>NEC APC Self Executng Demo</description> <year>198?</year> <publisher>NEC</publisher> - <info name="Usage Notes" value="Isn't bootable" /> + <info name="usage" value="Isn't bootable" /> <part name="flop1" interface="floppy_8"> <dataarea name="flop" size="121913"> <rom name="necdemo.imd" size="121913" crc="bf278a5f" sha1="a576a7536117ce4201780eda0e7fa6008735d952" status="baddump"/> @@ -381,8 +381,8 @@ license:CC0 <description>WordStar (Ver 3.30) for MS-DOS</description> <year>1983</year> <publisher>MicroPro International Corporation</publisher> - <info name="Serial No" value="XG4286NS" /> - <info name="Usage Notes" value="Needs MS-DOS" /> + <info name="serial" value="XG4286NS" /> + <info name="usage" value="Needs MS-DOS" /> <part name="flop1" interface="floppy_8"> <dataarea name="flop" size="216341"> <rom name="wordstar.imd" size="216341" crc="ed0e792b" sha1="e5f713735046211ac79db132dcbf92dd8a7e27d6"/> diff --git a/hash/apple2_cass.xml b/hash/apple2_cass.xml index 0e9a84aea02..62aeaac8243 100644 --- a/hash/apple2_cass.xml +++ b/hash/apple2_cass.xml @@ -344,7 +344,7 @@ To load and run a tape: <year>1978</year> <publisher>Apple Computer, Inc.</publisher> <info name="serial" value="600-2006-00" /> - <info name="P/N" value="A2T0004X" /> + <info name="partno" value="A2T0004X" /> <info name="usage" value="cass1 >Load 16K, cass2 ]Load 16K" /> <part name="cass1" interface="apple2_cass"> <feature name="part_id" value="Applesoft ][ floating point BASIC" /> @@ -2209,7 +2209,7 @@ To load and run a tape: <year>1978</year> <publisher>Apple Computer, Inc.</publisher> <info name="serial" value="600-2003-00" /> - <info name="P/N" value="A2T0006X" /> + <info name="partno" value="A2T0006X" /> <info name="usage" value="*280.3FFR start.length CTRL+Y 4K" /> <part name="cass" interface="apple2_cass"> <feature name="part_id" value="RAM Test" /> diff --git a/hash/bw14.xml b/hash/bw14.xml index a00e7233bfc..16fae66a9e3 100644 --- a/hash/bw14.xml +++ b/hash/bw14.xml @@ -11,7 +11,7 @@ license:CC0 <year>1984</year> <publisher>Digital Research Inc.</publisher> <info name="serial" value="1006-1269-00306" /> - <info name="part" value="MM00027/MM00028" /> + <info name="partno" value="MM00027/MM00028" /> <part name="flop1" interface="floppy_5_25"> <feature name="part_id" value="System & Utl. (1)"/> <dataarea name="flop" size="368974"> @@ -31,7 +31,7 @@ license:CC0 <year>1983</year> <publisher>MicroPro International</publisher> <info name="serial" value="BC01-0003-01003" /> - <info name="part" value="MM00013" /> + <info name="partno" value="MM00013" /> <part name="flop1" interface="floppy_5_25"> <feature name="part_id" value="CalcStar"/> <dataarea name="flop" size="368974"> @@ -45,7 +45,7 @@ license:CC0 <year>1982</year> <publisher>MicroPro International</publisher> <info name="serial" value="BC01-0004-01003" /> - <info name="part" value="MM00014" /> + <info name="partno" value="MM00014" /> <part name="flop1" interface="floppy_5_25"> <feature name="part_id" value="DataStar"/> <dataarea name="flop" size="368974"> @@ -71,7 +71,7 @@ license:CC0 <year>1982</year> <publisher>MicroPro International</publisher> <info name="serial" value="BC01-0005-01003/BC01-0006-01003" /> - <info name="part" value="MM00015/MM00018" /> + <info name="partno" value="MM00015/MM00018" /> <part name="flop1" interface="floppy_5_25"> <feature name="part_id" value="ReportStar"/> <dataarea name="flop" size="368974"> @@ -91,7 +91,7 @@ license:CC0 <year>1983</year> <publisher>MicroPro International</publisher> <info name="serial" value="BC01-0001-01003/BC01-0002-01003" /> - <info name="part" value="MM00011/MM00012" /> + <info name="partno" value="MM00011/MM00012" /> <part name="flop1" interface="floppy_5_25"> <feature name="part_id" value="WordStar & MailMerge"/> <dataarea name="flop" size="368974"> diff --git a/hash/casloopy.xml b/hash/casloopy.xml index 112bd348adc..3d82f9f24bf 100644 --- a/hash/casloopy.xml +++ b/hash/casloopy.xml @@ -14,7 +14,7 @@ license:CC0 <year>1994</year> <publisher>Casio</publisher> <info name="serial" value="XK-401"/> - <info name="alt_name" value="あにめらんど"/> + <info name="alt_title" value="あにめらんど"/> <part name="cart" interface="loopy_cart"> <dataarea name="rom" size="2097152"> <rom name="animelnd.bin" size="2097152" crc="665cd0a2" sha1="8d50867aba721185560fc92bed75c92263a1da39"/> @@ -27,7 +27,7 @@ license:CC0 <year>1995</year> <publisher>Casio</publisher> <info name="serial" value="XK-403"/> - <info name="alt_name" value="ドリームチェンジ 小金ちゃんのファッションパーティー"/> + <info name="alt_title" value="ドリームチェンジ 小金ちゃんのファッションパーティー"/> <part name="cart" interface="loopy_cart"> <dataarea name="rom" size="2097152"> <rom name="dreamchg.bin" size="2097152" crc="0b850185" sha1="b5d73661ea83167d2b07516c7c66a8a85b28415b"/> @@ -40,7 +40,7 @@ license:CC0 <year>1995</year> <publisher>Casio</publisher> <info name="serial" value="XK-402"/> - <info name="alt_name" value="HARIHARIシールパラダイス"/> + <info name="alt_title" value="HARIHARIシールパラダイス"/> <part name="cart" interface="loopy_cart"> <dataarea name="rom" size="2097152"> <rom name="harihari.bin" size="2097152" crc="39a417d6" sha1="1adbd97181b61a1a65e21976b0146e9dd80fbdbf"/> @@ -53,7 +53,7 @@ license:CC0 <year>1996</year> <publisher>Casio</publisher> <info name="serial" value="XK-503"/> - <info name="alt_name" value="リトルロマンス"/> + <info name="alt_title" value="リトルロマンス"/> <part name="cart" interface="loopy_cart"> <dataarea name="rom" size="0x3000000"> <rom name="d23c16000.ic104" size="0x200000" crc="947a96c3" sha1="df27293c136420d4c21724517953510292319433" offset="0x000000" /> @@ -67,7 +67,7 @@ license:CC0 <year>1995</year> <publisher>Casio</publisher> <info name="serial" value="XK-404"/> - <info name="alt_name" value="似顔絵アーティスト"/> + <info name="alt_title" value="似顔絵アーティスト"/> <part name="cart" interface="loopy_cart"> <dataarea name="rom" size="2097152"> <rom name="nigaoart.bin" size="2097152" crc="63d59881" sha1="d2b830acf8440e4726e851514d609700375b27db"/> @@ -80,7 +80,7 @@ license:CC0 <year>1995</year> <publisher>Casio</publisher> <info name="serial" value="XK-501"/> - <info name="alt_name" value="わんわん愛情物語"/> + <info name="alt_title" value="わんわん愛情物語"/> <part name="cart" interface="loopy_cart"> <dataarea name="rom" size="2097152"> <rom name="wanwanam.bin" size="2097152" crc="291ab2bc" sha1="77a63cf194c5b06633e25b43916629b6f3428870"/> @@ -93,7 +93,7 @@ license:CC0 <year>1995</year> <publisher>Casio</publisher> <info name="serial" value="XK-502"/> - <info name="alt_name" value="パソコン・コレクション"/> + <info name="alt_title" value="パソコン・コレクション"/> <part name="cart" interface="loopy_cart"> <dataarea name="rom" size="2097152"> <rom name="pccllect.bin" size="2097152" crc="9cd4d282" sha1="15ac5a8e71fc8371505da8368d04c9634655d1d5"/> @@ -106,7 +106,7 @@ license:CC0 <year>1996</year> <publisher>Casio</publisher> <info name="serial" value="XK-504"/> - <info name="alt_name" value="ルーピータウンのおへやがほしい!"/> + <info name="alt_title" value="ルーピータウンのおへやがほしい!"/> <part name="cart" interface="loopy_cart"> <dataarea name="rom" size="0x300000"> <rom name="CHIP1.IC104" size="0x200000" crc="bae71d45" sha1="79628715ccedd9bc3fd72d21fa9ea6513b88cf51" offset="0x000000" /> @@ -120,7 +120,7 @@ license:CC0 <year>1995</year> <publisher>Casio</publisher> <info name="serial" value="XK-701"/> - <info name="alt_name" value="ルピトンのワンダーパレット"/> + <info name="alt_title" value="ルピトンのワンダーパレット"/> <part name="cart" interface="loopy_cart"> <dataarea name="rom" size="0x200000"> <rom name="lupiton.bin" size="0x200000" crc="338a5af7" sha1="ddb3e2b363ef0325a1370511f3692ca47031cb46" /> @@ -133,7 +133,7 @@ license:CC0 <year>1995</year> <publisher>Casio</publisher> <info name="serial" value="XK-700"/> - <info name="alt_name" value="Magical Shop"/> + <info name="alt_title" value="Magical Shop"/> <part name="cart" interface="loopy_cart"> <dataarea name="rom" size="0x100000"> <rom name="mx23c8100.lsi102" size="0x100000" crc="5764591f" sha1="16a2ade7e08f16e44d5c74c714840df1b48da4ad" /> diff --git a/hash/ibm5150.xml b/hash/ibm5150.xml index 82de39f66e7..b964b8ce6d6 100644 --- a/hash/ibm5150.xml +++ b/hash/ibm5150.xml @@ -2707,7 +2707,7 @@ Known PC Booter Games Not Dumped, Or Dumped and Lost when Demonlord's Site went <year>1989</year> <publisher>Kyodia Software Marketing</publisher> <info name="usage" value="PC Booter" /> - <info name="Origin Publisher" value="日本ファルコム (Nihon Falcom)" /> + <info name="original_publisher" value="日本ファルコム (Nihon Falcom)" /> <part name="flop1" interface="floppy_5_25"> <dataarea name="flop" size="697170"> <rom name="ancient land of ys.td0" size="697170" crc="2ce1c65b" sha1="3e24853872cf98e10983c51ff51159dc7a61e063"/> @@ -6092,7 +6092,7 @@ has been replaced with an all-zero block. --> <description>MS-DOS (Version 5.00, 5.25", RTM)</description> <year>1991</year> <publisher>Microsoft</publisher> - <info name="OEM" value="Mecer" /> + <info name="oem" value="Mecer" /> <part name="flop1" interface="floppy_5_25"> <dataarea name="flop" size="368640"> <rom name="disk 1.img" size="368640" crc="de9e3bf6" sha1="b78aaced6bf262a5aa7af6d328caaf8370539c7c"/> @@ -6186,7 +6186,7 @@ has been replaced with an all-zero block. --> <description>MS-DOS (Version 5.00, 5.25", Upgrade, RTM)</description> <year>1991</year> <publisher>Microsoft</publisher> - <info name="OEM" value="Mecer" /> + <info name="oem" value="Mecer" /> <part name="flop1" interface="floppy_5_25"> <dataarea name="flop" size="368640"> <rom name="disk 1 (upgrade).img" size="368640" crc="01a3d9a2" sha1="083400723e475ed497b276c9d4f2799eff3b88b8"/> @@ -6223,7 +6223,7 @@ has been replaced with an all-zero block. --> <description>MS-DOS (Version 5.00, Mecer OEM)</description> <year>1991</year> <publisher>Microsoft</publisher> - <info name="OEM" value="Mecer" /> + <info name="oem" value="Mecer" /> <part name="flop1" interface="floppy_3_5"> <feature name="disk_serial" value="0044238" /> <dataarea name="flop" size="737280"> diff --git a/hash/ibm5170.xml b/hash/ibm5170.xml index ea092362f61..1d6efa697a8 100644 --- a/hash/ibm5170.xml +++ b/hash/ibm5170.xml @@ -15385,7 +15385,7 @@ license:CC0 <description>Microsoft Return of Arcade</description> <year>1996</year> <publisher>Microsoft</publisher> - <info name="Install Notes" value="Needs Windows 95" /> + <info name="usage" value="Requires Windows 95" /> <part name="flop1" interface="floppy_3_5"> <dataarea name="flop" size="1474560"> <rom name="disk1.img" size="1474560" crc="52469b53" sha1="70b4b69e56821ab549c80ae0ecad6cbd335d0631"/> diff --git a/language/Afrikaans/strings.po b/language/Afrikaans/strings.po index f39cd10a756..ba66ca9c774 100644 --- a/language/Afrikaans/strings.po +++ b/language/Afrikaans/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -16,32 +16,32 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -50,233 +50,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -304,7 +304,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -313,7 +313,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -322,23 +322,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -358,7 +358,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -650,36 +650,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -717,86 +717,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -960,28 +981,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -989,11 +1010,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1034,7 +1055,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1051,291 +1072,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1347,23 +1541,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1386,7 +1598,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1398,27 +1610,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1491,7 +1703,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1505,7 +1717,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1516,52 +1728,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1585,482 +1797,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2074,29 +2338,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2116,211 +2380,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2427,137 +2726,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3145,7 +3522,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Albanian/strings.po b/language/Albanian/strings.po index 662f793efa3..a7e22f6c0af 100644 --- a/language/Albanian/strings.po +++ b/language/Albanian/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -16,32 +16,32 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -50,233 +50,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -304,7 +304,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -313,7 +313,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -322,23 +322,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -358,7 +358,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -650,36 +650,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -717,86 +717,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -960,28 +981,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -989,11 +1010,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1034,7 +1055,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1051,291 +1072,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1347,23 +1541,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1386,7 +1598,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1398,27 +1610,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1491,7 +1703,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1505,7 +1717,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1516,52 +1728,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1585,482 +1797,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2074,29 +2338,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2116,211 +2380,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2427,137 +2726,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3145,7 +3522,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Arabic/strings.po b/language/Arabic/strings.po index 3d390453009..ef092392413 100644 --- a/language/Arabic/strings.po +++ b/language/Arabic/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -16,32 +16,32 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -50,233 +50,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -304,7 +304,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -313,7 +313,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -322,23 +322,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -358,7 +358,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -650,36 +650,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -717,86 +717,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -960,28 +981,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -989,11 +1010,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1034,7 +1055,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1051,291 +1072,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1347,23 +1541,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1386,7 +1598,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1398,27 +1610,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1491,7 +1703,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1505,7 +1717,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1516,52 +1728,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1585,482 +1797,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2074,29 +2338,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2116,211 +2380,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2427,137 +2726,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3145,7 +3522,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Basque/strings.po b/language/Basque/strings.po index 75302268474..3a6795d43b5 100644 --- a/language/Basque/strings.po +++ b/language/Basque/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -17,32 +17,32 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -51,233 +51,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -305,7 +305,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -314,7 +314,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -323,23 +323,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -359,7 +359,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -651,36 +651,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -718,86 +718,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -961,28 +982,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -990,11 +1011,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1035,7 +1056,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1052,291 +1073,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1348,23 +1542,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1387,7 +1599,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1399,27 +1611,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1492,7 +1704,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1506,7 +1718,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1517,52 +1729,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1586,482 +1798,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2075,29 +2339,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2117,211 +2381,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2428,137 +2727,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3146,7 +3523,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Belarusian/strings.po b/language/Belarusian/strings.po index 63eea5733e7..00d44171926 100644 --- a/language/Belarusian/strings.po +++ b/language/Belarusian/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -19,32 +19,32 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -53,233 +53,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -307,7 +307,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -316,7 +316,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -325,23 +325,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -361,7 +361,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -653,36 +653,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -720,86 +720,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -963,28 +984,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -992,11 +1013,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1037,7 +1058,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1054,291 +1075,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1350,23 +1544,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1389,7 +1601,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1401,27 +1613,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1494,7 +1706,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1508,7 +1720,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1519,52 +1731,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1588,482 +1800,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2077,29 +2341,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2119,211 +2383,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2430,137 +2729,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3148,7 +3525,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Bosnian/strings.po b/language/Bosnian/strings.po index 78ca3e18976..53d07e089f9 100644 --- a/language/Bosnian/strings.po +++ b/language/Bosnian/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -16,32 +16,32 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -50,233 +50,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -304,7 +304,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -313,7 +313,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -322,23 +322,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -358,7 +358,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -650,36 +650,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -717,86 +717,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -960,28 +981,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -989,11 +1010,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1034,7 +1055,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1051,291 +1072,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1347,23 +1541,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1386,7 +1598,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1398,27 +1610,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1491,7 +1703,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1505,7 +1717,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1516,52 +1728,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1585,482 +1797,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2074,29 +2338,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2116,211 +2380,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2427,137 +2726,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3145,7 +3522,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Bulgarian/strings.po b/language/Bulgarian/strings.po index e85671c0296..d113656477f 100644 --- a/language/Bulgarian/strings.po +++ b/language/Bulgarian/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -18,32 +18,32 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -52,233 +52,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -306,7 +306,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -315,7 +315,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -324,23 +324,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -360,7 +360,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -652,36 +652,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -719,86 +719,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -962,28 +983,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -991,11 +1012,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1036,7 +1057,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1053,291 +1074,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1349,23 +1543,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1388,7 +1600,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1400,27 +1612,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1493,7 +1705,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1507,7 +1719,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1518,52 +1730,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1587,482 +1799,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2076,29 +2340,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2118,211 +2382,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2429,137 +2728,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3147,7 +3524,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Burmese/strings.po b/language/Burmese/strings.po index 25f69203112..f5a768b5d01 100644 --- a/language/Burmese/strings.po +++ b/language/Burmese/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -16,32 +16,32 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -50,233 +50,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -304,7 +304,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -313,7 +313,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -322,23 +322,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -358,7 +358,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -650,36 +650,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -717,86 +717,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -960,28 +981,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -989,11 +1010,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1034,7 +1055,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1051,291 +1072,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1347,23 +1541,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1386,7 +1598,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1398,27 +1610,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1491,7 +1703,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1505,7 +1717,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1516,52 +1728,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1585,482 +1797,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2074,29 +2338,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2116,211 +2380,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2427,137 +2726,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3145,7 +3522,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Catalan/strings.po b/language/Catalan/strings.po index a65b6616a82..81250493236 100644 --- a/language/Catalan/strings.po +++ b/language/Catalan/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME 0.180\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-12-14 14:01+0100\n" "Last-Translator: Jordi Mallach <jordi@debian.org>\n" "Language-Team: Catalan <ca@dodds.net>\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -26,25 +26,25 @@ msgstr "" "\n" "Premeu qualsevol tecla per continuar" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -53,185 +53,185 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -240,7 +240,7 @@ msgstr "" "\n" " S'ha desat la configuració \n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -249,8 +249,8 @@ msgstr "" "%s\n" " afegit a la llista de favorits." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -259,33 +259,33 @@ msgstr "" "%s\n" " suprimit de la llista de favorits." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s (%3$d / %4$d paquets de programari)" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Opcions de so" @@ -313,7 +313,7 @@ msgstr "Personalitza la IU" msgid "Configure Directories" msgstr "Configura els directoris" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -322,7 +322,7 @@ msgstr "" msgid "[create]" msgstr "[crea]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[llista de programari]" @@ -331,23 +331,23 @@ msgstr "[llista de programari]" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Seleccioneu el mode d'accés" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Només lectura" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Lectura i escriptura" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Llegeix aquesta imatge, escriu en una altra imatge" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Llegeix aquesta imatge, escriu al diff" @@ -367,7 +367,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Trampes" @@ -659,36 +659,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "Encès" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Apagat" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Auto" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Torna a la màquina" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Surt" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Torna al menú anterior" @@ -726,86 +726,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -897,6 +918,9 @@ msgid "" "\n" "There are working clones of this machine: %s" msgstr "" +"\n" +"\n" +"Hi ha clons funcionals d'aquesta màquina: %s" #: src/frontend/mame/ui/info.cpp:339 #, c-format @@ -987,28 +1011,28 @@ msgstr "Parcialment suportat" msgid "[empty]" msgstr "[buit]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[gestor de fitxers]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "nom curt" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "descripció" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -1016,11 +1040,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "El fitxer ja existeix. Voleu sobreescriure'l?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "No" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Sí" @@ -1061,7 +1085,7 @@ msgstr "Natural" msgid "Emulated" msgstr "Emulat" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1078,189 +1102,358 @@ msgstr "Habilitat" msgid "Disabled" msgstr "Inhabilitat" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" -msgstr "" +msgstr "Categoria" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" -msgstr "" +msgstr "Fabricant" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" -msgstr "" +msgstr "Any" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" +msgstr "Filtre personalitzat" + +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "Any" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" +msgstr "Publicador" + +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" -msgstr "" +msgstr "Tipus de dispositiu" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" +msgstr "Llista de programari" + +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Selecciona filtres personalitzats:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Suprimeix el darrer filtre" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Afegeix un filtre" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" -msgstr "" +msgstr "Fitxer" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Ús del programari" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Revisió: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Reinicialitza" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1269,7 +1462,7 @@ msgstr "" "Temps d'execució: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1278,96 +1471,100 @@ msgstr "" "Temps d'execució: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Moneda %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Moneda %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (blocat)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Retard visible" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "S'ha desat %s.xml sota la carpeta ui." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Nom: Descripció:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "S'ha desat %s.txt sota la carpeta ui." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Exporta la llista en format XML (like -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" "Exporta la llista en format XML (com -listxml, però excloent dispositius)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Exporta la llista en format TXT (com -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Controlador" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Afegeix als favorits" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Suprimeix dels favorits" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (per defecte)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Connectors" @@ -1379,30 +1576,48 @@ msgstr "Pseudo terminals" msgid "[failed]" msgstr "[fallit]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" #: src/frontend/mame/ui/slotopt.cpp:192 #, c-format msgid "%s [internal]" -msgstr "" +msgstr "%s [intern]" #: src/frontend/mame/ui/inputmap.cpp:38 msgid "User Interface" @@ -1418,7 +1633,7 @@ msgid "Other Controls" msgstr "Altres controls" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1430,27 +1645,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1523,7 +1738,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Configura les opcions" @@ -1537,7 +1752,7 @@ msgid "Type name or select: (random)" msgstr "Teclegeu el nom o seleccioneu: (aleatori)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1548,52 +1763,52 @@ msgid "Driver: %1$-.100s" msgstr "Controlador: %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "En resum: NO FUNCIONA" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "Resum: Protecció no emulada" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "En resum: Funciona" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Gràfics: Imperfectes, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Gràfics: OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "So: No implementat" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "So: Imperfecte" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "So: OK" @@ -1619,482 +1834,534 @@ msgid "Reload All" msgstr "Torna a carregar-ho tot" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROM" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "IU" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Llengua" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Mostres" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Mirilles" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DAT" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INI" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DAT" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Instantànies" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Icones" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Instantànies" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Quadres de control" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Cabines" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Díptics" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Títols" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Finals" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "PCB" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Quadres de control" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Mirilles" +msgctxt "path-option" +msgid "PCBs" +msgstr "PCB" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" +msgstr "Díptics" + +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "Selecciona" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "ComEsFa" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Logotips" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Puntuacions" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Versus" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Portades" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Paràmetres de carpetes" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Carpetes %1$s actuals" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Canvia de carpeta" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Afegeix una carpeta" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Suprimeix una carpeta" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "Canvia la carpeta %1$s - cerca: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "Afegeix la carpeta %1$s - cerca: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Premeu TAB per establir" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "Suprimeix la carpeta %1$s" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " COLORS" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Configura la màquina" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" -msgstr "" +msgstr "Conjunt de ROM\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" -msgstr "" +msgstr "Any\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" -msgstr "" +msgstr "Fabricant\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" -msgstr "" +msgstr "El control·lador és un clon de\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" -msgstr "" +msgstr "El controlador és el pare\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" -msgstr "" +msgstr "En resum\tNO FUNCIONA\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" -msgstr "" +msgstr "En resum\tProtecció no emulada\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" -msgstr "" +msgstr "En resum\tFunciona\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" -msgstr "" +msgstr "Gràfics\tNo implementat\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" -msgstr "" +msgstr "Gràfics\tColors imperfectes\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" -msgstr "" +msgstr "Gràfics\tImperfecte\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" -msgstr "" +msgstr "Gràfics\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" -msgstr "" +msgstr "So\tNo implementat\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" -msgstr "" +msgstr "So\tImperfecte\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" -msgstr "" +msgstr "So\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" -msgstr "" +msgstr "Orientació de la pantalla\tVertical\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" -msgstr "" +msgstr "Orientació de la pantalla\tHoritzontal\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s (%3$d / %4$d màquines (%5$d BIOS))" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "Conjunt de roms: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "Sistema: %1$-.100s" @@ -2108,29 +2375,29 @@ msgstr "Llista de la selecció - cerca: " msgid "Double click or press %1$s to select" msgstr "Feu doble clic o premeu %1$s per seleccionar" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2150,212 +2417,247 @@ msgstr "Amaga la info/imatge" msgid "Hide Both" msgstr "Amaga ambdós" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Tipus de lletra" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Colors" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Llengua" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Mostra els panells laterals" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Paràmetres personalitzats de la IU" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "per defecte" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Tipus de lletra de la IU" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Negreta" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Cursiva" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Línies" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Mida del text de la info" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Paràmetres del tipus de lletra de la IU" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "Text d'exemple - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Text normal" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Color seleccionat" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Fons del text normal" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Color de fons seleccionat" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Color del subelement" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Clona" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Vora" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Fons" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Color no disponible" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Color del lliscador" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Fons del visualitzador de gfx" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Color de ratolí al damunt" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Color de fons de ratolí al damunt" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Restaura els colors originals" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Paràmetres dels colors de la IU" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "Feu doble click o premeu %1$s per a canviar el valor del color" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Previsualització del menú" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Normal" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Subelement" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Seleccionat" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Ratolí a sobre" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" -msgstr "" +msgstr "Paràmetres d'ARGB" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Alfa" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Vermell" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Verd" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Blau" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Selecciona des de la paleta" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Previsualització de color =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Blanc" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Plata" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Gris" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Negre" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Vermell" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Taronja" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Groc" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Verd" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Blau" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Violeta" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2418,7 +2720,7 @@ msgstr "Control de cinta" #: src/frontend/mame/ui/mainmenu.cpp:101 msgid "BIOS Selection" -msgstr "" +msgstr "Selecció de BIOS" #: src/frontend/mame/ui/mainmenu.cpp:104 msgid "Slot Devices" @@ -2462,137 +2764,215 @@ msgid "Select New Machine" msgstr "Selecciona una màquina nova" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Quadres de control" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Instantànies" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "PCB" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "Logotip" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Versus" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Game Over" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "ComEsFa" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Puntuacions" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Portades" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Afegeix o suprimeix favorits" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Exporta la llista mostrada a un fitxer" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "Mostra la visualitzció de DAT" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Selecció de part de programari:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "El programari és un clon de: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "El programari és el pare" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Suportat: No" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Suportat: Parcialment" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Suportat: Sí" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "Conjunt de ROM: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "El control·lador és un clon de: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "Conjunt de roms: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "El controlador és el pare" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "El control·lador és un clon de: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Imatges" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Infos" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Ús" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Informació general" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "So" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3180,7 +3560,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Història" @@ -3200,6 +3580,40 @@ msgstr "" msgid "MAMEinfo" msgstr "" +#~ msgid "Custom UI Settings" +#~ msgstr "Paràmetres personalitzats de la IU" + +#~ msgid "Software Usage" +#~ msgstr "Ús del programari" + +#~ msgid "Usage" +#~ msgstr "Ús" + +#~ msgid "UI" +#~ msgstr "IU" + +#~ msgid "Samples" +#~ msgstr "Mostres" + +#~ msgid "Snapshots" +#~ msgstr "Instantànies" + +#~ msgid "Titles" +#~ msgstr "Títols" + +#~ msgid "Ends" +#~ msgstr "Finals" + +#~ msgid "Select" +#~ msgstr "Selecciona" + +#~ msgid "Control Panels" +#~ msgstr "Quadres de control" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "Conjunt de ROM: %1$-.100s" + #~ msgid "View" #~ msgstr "Visualització" @@ -3244,36 +3658,15 @@ msgstr "" #~ "El programari seleccionat manca una o més imatges ROM o CHD. Seleccioneu-" #~ "ne un diferent." -#~ msgid "Vertical" -#~ msgstr "Vertical" - -#~ msgid "Horizontal" -#~ msgstr "Horitzontal" - -#~ msgid "Unimplemented" -#~ msgstr "No implementat" - -#~ msgid "Imperfect" -#~ msgstr "Imperfecte" - #~ msgid "OK" #~ msgstr "D'acord" -#~ msgid "Gfx: %s, Sound: %s" -#~ msgstr "Gràfics: %s, So: %s" - #~ msgid "Audit in progress..." #~ msgstr "L'auditoria està en curs…" #~ msgid "Extra INIs" #~ msgstr "INI extra" -#~ msgid " ^!File" -#~ msgstr " ^!Fitxer" - -#~ msgid " ^!Category" -#~ msgstr " ^!Categoria" - #~ msgid "%1$s (%2$s - %3$s) - " #~ msgstr "%1$s (%2$s - %3$s) - " @@ -3289,21 +3682,6 @@ msgstr "" #~ msgid "Other filter" #~ msgstr "Altres filtres" -#~ msgid "^!Manufacturer" -#~ msgstr "^!Fabricant" - -#~ msgid "^!Year" -#~ msgstr "^!Any" - -#~ msgid "^!Publisher" -#~ msgstr "^!Publicador" - -#~ msgid "^!Software List" -#~ msgstr "^!Llista de programari" - -#~ msgid "^!Device type" -#~ msgstr "^!Tipus de dispositiu" - #~ msgid "^!Region" #~ msgstr "^!Regió" @@ -3313,33 +3691,15 @@ msgstr "" #~ msgid "Region: %1$s -" #~ msgstr "Regió: %1$s -" -#~ msgid "Publisher: %1$s -" -#~ msgstr "Editor: %1$s -" - -#~ msgid "Year: %1$s -" -#~ msgstr "Any: %1$s -" - -#~ msgid "Device type: %1$s -" -#~ msgstr "Tipus de dispositiu: %1$s -" - #~ msgid "%s Search: %s_" #~ msgstr "%s Cerca: %s_" -#~ msgid "Bios selection:" -#~ msgstr "Selecció de BIOS:" - #~ msgid "Bios" #~ msgstr "Bios" #~ msgid "This machine has no bios." #~ msgstr "Aquesta màquina no té bios." -#~ msgid "Bios Selection" -#~ msgstr "Selecció de BIOS" - -#~ msgid " - ARGB Settings" -#~ msgstr " - Paràmetres d'ARGB" - #~ msgid "Software History" #~ msgstr "Història del programari" @@ -3371,15 +3731,6 @@ msgstr "" #~ msgstr "La màquina requereix fitxer d'art externs\n" #~ msgid "" -#~ "\n" -#~ "\n" -#~ "There are working clones of this machine: " -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Hi ha clons funcionals d'aquesta màquina: " - -#~ msgid "" #~ "The selected machine is missing one or more required ROM or CHD images. " #~ "Please select a different machine.\n" #~ "\n" @@ -3390,51 +3741,6 @@ msgstr "" #~ "\n" #~ "Premeu una tecla per continuar." -#~ msgid "Romset: %1$-.100s\n" -#~ msgstr "Conjunt de ROM: %1$-.100s\n" - -#~ msgid "Year: %1$s\n" -#~ msgstr "Any: %1$s\n" - -#~ msgid "Manufacturer: %1$-.100s\n" -#~ msgstr "Fabricant: %1$-.100s\n" - -#~ msgid "Driver is Clone of: %1$-.100s\n" -#~ msgstr "El control·lador és un clon de: %1$-.100s\n" - -#~ msgid "Driver is Parent\n" -#~ msgstr "El controlador és el pare\n" - -#~ msgid "Overall: NOT WORKING\n" -#~ msgstr "En resum: NO FUNCIONA\n" - -#~ msgid "Overall: Unemulated Protection\n" -#~ msgstr "En resum: Protecció no emulada\n" - -#~ msgid "Overall: Working\n" -#~ msgstr "En resum: Funciona\n" - -#~ msgid "Graphics: Imperfect Colors\n" -#~ msgstr "Gràfics: Colors imperfectes\n" - -#~ msgid "Graphics: Imperfect\n" -#~ msgstr "Gràfics: imperfectes\n" - -#~ msgid "Graphics: OK\n" -#~ msgstr "Gràfics: OK\n" - -#~ msgid "Sound: Unimplemented\n" -#~ msgstr "So: No implementat\n" - -#~ msgid "Sound: Imperfect\n" -#~ msgstr "So: Imperfecte\n" - -#~ msgid "Sound: OK\n" -#~ msgstr "So: OK\n" - -#~ msgid "Driver is Skeleton: %1$s\n" -#~ msgstr "El control·lador és un esquelet: %1$s\n" - #~ msgid "Game is Mechanical: %1$s\n" #~ msgstr "El joc és mecànic: %1$s\n" @@ -3450,9 +3756,6 @@ msgstr "" #~ msgid "Support Save: %1$s\n" #~ msgstr "Suporta desar: %1$s\n" -#~ msgid "Screen Orientation: %1$s\n" -#~ msgstr "Orientació de la pantalla: %1$s\n" - #~ msgid "Requires CHD: %1$s\n" #~ msgstr "Requereix CHD: %1$s\n" @@ -3470,9 +3773,6 @@ msgstr "" #~ "\n" #~ "Premeu una tecla per continuar." -#~ msgid " [internal]" -#~ msgstr " [intern]" - #~ msgid "%1$s %2$s ( %3$d / %4$d softwares )" #~ msgstr "%1$s %2$s ( %3$d / %4$d programaris )" diff --git a/language/Chinese_Simplified/strings.po b/language/Chinese_Simplified/strings.po index 7c182678887..84b49207dca 100644 --- a/language/Chinese_Simplified/strings.po +++ b/language/Chinese_Simplified/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2021-05-30 18:00+0800\n" "Last-Translator: YuiFAN\n" "Language-Team: MAME Language Team\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -27,11 +27,11 @@ msgstr "" "\n" "按任意按键继续" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "此驱动需要额外载入下列装置的映像档: " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" @@ -40,7 +40,7 @@ msgstr "" "启用 UI 控制\n" "以 %1$s 切换" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" @@ -49,7 +49,7 @@ msgstr "" "停用 UI 控制\n" "以 %1$s 切换" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -62,185 +62,185 @@ msgstr "" "按 ''%1$s'' 退出,\n" "按 ''%2$s'' 继续模拟。" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "主音量" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s 音量" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "超频 CPU %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "超频 %1$s 声音" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s 刷新率" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s 亮度" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s 对比" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s 迦玛值" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s 水平延展" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s 水平位置" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s 垂直延展" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s 垂直位置" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "激光影碟 %1$s 水平延展" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "激光影碟 %1$s 水平位置" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "激光影碟 %1$s 垂直延展" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "激光影碟 %1$s 垂直位置" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "向量闪烁度" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "最小光束宽度" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "最大光束宽度" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "光束点大小" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "光束强度" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "十字准星尺度 %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "十字准星位移 %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "十字准星尺度 X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "十字准星尺度 Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "十字准星位移 X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "十字准星位移 Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**保存 ui.ini 时错误**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**保存 %s.ini 时错误**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -250,7 +250,7 @@ msgstr "" " 设定已保存 \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -259,8 +259,8 @@ msgstr "" "%s\n" " 已新增至最爱清单。" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -269,33 +269,33 @@ msgstr "" "%s\n" " 已从最爱清单移除。" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d 软件包 )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "驱动: \"%1$s\" 软件清单 " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - 搜寻: %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "搜寻: %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "声音选项" @@ -323,7 +323,7 @@ msgstr "自订 UI" msgid "Configure Directories" msgstr "设定目录" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[空插槽]" @@ -332,7 +332,7 @@ msgstr "[空插槽]" msgid "[create]" msgstr "[建立]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[软件清单]" @@ -341,23 +341,23 @@ msgstr "[软件清单]" msgid "Error accessing %s" msgstr "错误存取 %s" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "选择存取模式" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "唯读" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "读写" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "读取此映像档,写入至其他映像档" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "读取此映像档,写入差异档" @@ -377,9 +377,9 @@ msgstr "重新选择上次执行的机台" msgid "Enlarge images in the right panel" msgstr "放大右侧面版的图片" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" -msgstr "作弊码文件 (cheat)" +msgstr "作弊码文件" #: src/frontend/mame/ui/submenu.cpp:36 msgid "Show mouse pointer" @@ -669,36 +669,36 @@ msgstr "同步更新" msgid "Wait Vertical Sync" msgstr "等待垂直同步" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "开" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "关" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "自动" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "启动机械" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "回到机械" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "结束" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "回上一层菜单" @@ -736,86 +736,107 @@ msgid "Cannot change options while recording!" msgstr "正在录制时无法变更选项!" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "保护" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "计时" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "图形" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "色盘" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "声音" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "撷取硬体" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "相机" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "麦克风" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "控制" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "键盘" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "鼠标" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "媒体" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "磁盘" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "印表机" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "磁带" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "打孔带" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "磁鼓" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "固态储存" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "通讯" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "区域网" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "广域网" @@ -896,8 +917,8 @@ msgid "" "experience this machine.\n" msgstr "" "\n" -"此机械的部分元件无法模拟,因其需要实际活动的互动或机械装置的组合。" -"故无法达成此机械的完成体验。\n" +"此机械的部分元件无法模拟,因其需要实际活动的互动或机械装置的组合。故无法达成" +"此机械的完成体验。\n" #: src/frontend/mame/ui/info.cpp:315 #, c-format @@ -999,28 +1020,28 @@ msgstr "部分支援" msgid "[empty]" msgstr "[ 空 ]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[ 文件管理器 ]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "切换项目顺序" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "切换顺序:当前项目依照 %s 排序" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "短档名" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "描述" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[ 完整清单 ]" @@ -1028,11 +1049,11 @@ msgstr "[ 完整清单 ]" msgid "File Already Exists - Override?" msgstr "档案已存在 — 是否覆写?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "否" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "是" @@ -1073,7 +1094,7 @@ msgstr "自然" msgid "Emulated" msgstr "模拟" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "%1$s [root%2$s]" @@ -1090,189 +1111,358 @@ msgstr "已启用" msgid "Disabled" msgstr "已停用" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "开发商" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "发行日" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "未过滤" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "可用" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "不可用" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "可以执行" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "不可执行" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "机械式" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "非机械式" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "类别" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "最爱" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "BIOS" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "非 BIOS" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "母档" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "克隆版" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "制造商" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "年代" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "已支援即时存档" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "不支援即时存档" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "需要 CHD" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "不需要 CHD" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "垂直萤幕" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "水平萤幕" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "自订过滤" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "未过滤" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "可用" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "不可用" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "最爱" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "母档" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "克隆版" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "年代" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "出版商" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "开发商" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "已支援" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "部分支援" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "不支援" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "释出区域" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "装置类别" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "软件清单" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "自订过滤" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "<设定过滤>" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "选择自订过滤器:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "过滤 %1$u" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "移除最后过滤器" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "新增过滤器" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "选择类别:" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "[没有类别 INI 档案]" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "[INI 档案中没有群组]" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "没有发现群组 INI 档案" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "档案" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "在类别档案中没有找到群组" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "群组" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "包含克隆版" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "软件用法" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "版本: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "重设" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1281,7 +1471,7 @@ msgstr "" "执行时间: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1290,7 +1480,7 @@ msgstr "" "执行时间: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1299,88 +1489,92 @@ msgstr "" "彩票分配数: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "投币数 %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "投币数 %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (已锁定)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "P$d 可视度" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "P%d 十字准星" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "可见度延迟" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml 已储存于 ui 文件夹。" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "名称: 描述:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt 已储存于 ui 资料夹下。" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "汇出 XML 格式列表 (同 -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "汇出 TXT 格式列表 (同 -listxml,但不包含装置)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "汇出 TXT 格式列表 (同 -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "驱动" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "此机台没有 BIOS。" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "新增至最爱" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "从最爱移除" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "储存机台设定" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "设定机台:" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (缺省)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "插件" @@ -1392,23 +1586,41 @@ msgstr "伪终端" msgid "[failed]" msgstr "[ 错误 ]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "未找到已储存的状态" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "载入状态" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "选择要载入的状态" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "保存状态" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "按下键盘按键、摇杆按钮或选择状态以覆写" @@ -1431,8 +1643,8 @@ msgid "Other Controls" msgstr "其他控制" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." -msgstr "此机台没有输入对应表" +msgid "This machine has no configurable inputs." +msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 msgid "Pressed" @@ -1443,27 +1655,27 @@ msgstr "按住" msgid "Invalid sequence entered" msgstr "输入了无效序列" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "[root%1$s]" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "按下 %1$s 设定\n" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "按下 %1$s 加入\n" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "按下 %1$s 清除\n" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "按下 %1$s 还原缺省值\n" @@ -1516,7 +1728,8 @@ msgstr "无法跨目录储存" msgid "" "The software selected is missing one or more required ROM or CHD images.\n" "Please acquire the correct files or select a different one." -msgstr "选定的软体缺少一个或多个必要的 ROM 或 CHD 映像档\n" +msgstr "" +"选定的软体缺少一个或多个必要的 ROM 或 CHD 映像档\n" "请取得正确的档案或选择不同的档案。" #: src/frontend/mame/ui/simpleselgame.cpp:150 @@ -1543,7 +1756,7 @@ msgstr "" "信息。" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "设定选项" @@ -1557,7 +1770,7 @@ msgid "Type name or select: (random)" msgstr "输入名称或选择: (随机)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1568,52 +1781,52 @@ msgid "Driver: %1$-.100s" msgstr "驱动: %-.100s\n" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "整体: 不可执行" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "整体: 未模拟保护" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "整体: 可以执行" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "图形: 不完整," #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "图形: 不完美, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "图形: OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "声音: 无" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "声音: 无法执行" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "声音: 不完美" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "声音: OK" @@ -1639,466 +1852,523 @@ msgid "Reload All" msgstr "全部重新载入" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROM" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "软件媒介" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "使用者介面" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "语言" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "装饰图" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "采样文件" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "十字准星" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "文件" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INI" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "文件" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "类别 INI" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "快照 (snap)" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "图示" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "快照 (snap)" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "控制面板" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "机械图 (cabinets)" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "广告图 (flyers)" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "标题图 (titles)" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "结束图 (ends)" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "PCB 图" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "贴画 (marquees)" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "控制面板" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "十字准星" +msgctxt "path-option" +msgid "PCBs" +msgstr "PCB 图" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "装饰图" +msgctxt "path-option" +msgid "Flyers" +msgstr "广告图 (flyers)" + +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "首领" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" msgstr "装饰图预览" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "选择" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "游戏结束" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "说明图" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "标题图" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "得分" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "对战" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "封面" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "文件夹设定" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "当前 %1$s 文件夹" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "变更文件夹" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "新增文件夹" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "移除文件夹" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "变更 %1$s 文件夹 - 搜寻: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "新增 %1$s 文件夹 - 搜寻: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "按下 TAB 键设定" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "移除 %1$s 文件夹" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " 色彩" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " PENS" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "设定机台" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "ROM组\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "年代\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "制造商\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "驱动相容于\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "驱动为主档\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "类比控制\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "键盘输入\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "整体\t不可执行\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "整体\t未模拟保护\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "整体\t可以执行\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "图形\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "图形\t色彩错误\n" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "图形\t色彩不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "图形\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "图形\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "声音\t无\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "声音\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "声音\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "声音\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "撷取\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "撷取\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "相机\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "相机\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "麦克风\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "麦克风\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "控制\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "控制\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "键盘\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "键盘\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "鼠标\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "鼠标\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "媒体\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "媒体\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "磁盘\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "磁盘\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "打印机\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "打印机\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "磁带\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "磁带\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "打孔带\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "打孔带\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "磁鼓\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "磁鼓\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "(EP)ROM\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "(EP)ROM\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "通讯\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "通讯\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "区域网路\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "区域网路\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "外部网路\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "外部网路\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "计时\t无法执行\n" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "计时\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "机械式机台\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "机械式机台\t否\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "需要装饰图\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "需要装饰图\t否\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "需要可点击的装饰图\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "需要可点击的装饰图\t否\n" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "支援檯面型筐体\t否\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "驱动程序为 BIOS\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "驱动程序为 BIOS\t否\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "支援即时存档\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "支援即时存档\t否\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "画面方向\t垂直\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "画面方向\t水平\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "需要 CHD\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "需要 CHD\t否\n" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "ROM 校验结果\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "ROM 校验结果\t错误\n" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "采样文件校验结果\t不需要\n" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "样本档校验结果\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "样本档校验结果\t错误\n" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" @@ -2106,17 +2376,12 @@ msgstr "" "ROM 验证 \t停用\n" "采样文件验证 \t停用\n" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d 机械 (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "Rom组: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "系统: %1$-.100s" @@ -2130,22 +2395,22 @@ msgstr "选项清单 - 搜寻: " msgid "Double click or press %1$s to select" msgstr "双击或按下 %1$s 以选择" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "校验标记为不可用的 %1$u 机台的 ROM 档案?" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "校验所有 %1$u 机台的 ROM 档案?" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(结果将保存在 %1$s)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" @@ -2154,7 +2419,7 @@ msgstr "" "正在校验供机台 %2$u 的 %3$u ROM 档案...\n" "%1$s" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "开始校验" @@ -2174,211 +2439,246 @@ msgstr "隐藏信息/图片" msgid "Hide Both" msgstr "隐藏两者" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "字体" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "颜色" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "语言" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "显示侧面版" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "连发设定" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "缺省" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "UI 字体" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "粗体" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "斜体" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "行" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "信息字体大小" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "UI 字体设定" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "采样文字 - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "一般文本" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "选择色彩" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "一般文本背景" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "选择背景颜色" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "子项目颜色" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "克隆" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "边框" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "背景" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "机械设定开关" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "未拥有游戏颜色" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "参数调整" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "图形检视器背景" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "鼠标经过颜色" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "鼠标经过背景颜色" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "鼠标按下颜色" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "鼠标按下背景颜色" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "还原至原本颜色" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "UI 色彩设定" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "双击或按下 %1$s 以改变颜色值" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "菜单预览" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "一般" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "子项目" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "已选择" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "鼠标经过" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "ARGB 设定" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "透明度" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "红" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "绿" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "蓝" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "从色盘选择" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "颜色预览=" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "白" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "银" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "灰" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "黑" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "红" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "橘" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "黄" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "绿" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "蓝" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "紫" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2485,143 +2785,221 @@ msgid "Select New Machine" msgstr "选择新机器" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "快照" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "机械图" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" msgstr "控制面板" +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "PCB 图" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "广告图" + #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "装饰图预览" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "首领" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "标题图" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "对战" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "游戏结束" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "说明图" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "得分" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "贴画" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "封面" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "新增或移除最爱" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "汇出显示的清单至档案" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "显示文件检视" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "软件部分选项: " -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "选择 BIOS:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "软件相容于: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "软件为主档" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "已支援: 否" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "已支援: 部分" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "已支援: 是" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "Rom套: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "驱动相容于: %-.100s" +msgid "Romset: %1$-.100s" +msgstr "Rom组: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "驱动为主档" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "驱动相容于: %-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "图像" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "信息" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -"选定系统所需要的 ROM / 磁碟映像档为缺少或不正确。" -"请取得正确的档案或选择不同的系统。\n" +"选定系统所需要的 ROM / 磁碟映像档为缺少或不正确。请取得正确的档案或选择不同的" +"系统。\n" "\n" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -"选定软体所需要的 ROM / 磁碟映像档为缺少或不正确。" -"请取得正确的档案或选择不同的软体项目。\n" +"选定软体所需要的 ROM / 磁碟映像档为缺少或不正确。请取得正确的档案或选择不同的" +"软体项目。\n" "\n" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "不正确的检查码" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "不正确的长度" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "未找到" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "%1$s (%2$s) - %3$s\n" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "%1$s - %2$s\n" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "按任意键继续。" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "用法" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "一般信息" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "声音" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "采样率" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "使用外部采样文件" @@ -2993,15 +3371,13 @@ msgstr "测试/写入塞入值" msgid "" "Use this if you want to poke the Slot 1 value (eg. You started with " "something but lost it)" -msgstr "" -"如果你想塞入插槽 1 的值(如你开始某事但忘了),用这个" +msgstr "如果你想塞入插槽 1 的值(如你开始某事但忘了),用这个" #: plugins/cheatfind/init.lua:746 msgid "" "Use this if you want to poke the Last Slot value (eg. You started without an " "item but finally got it)" -msgstr "" -"如果你想塞入最后的插槽值(如你开始时忘了某项但终于找到了),用这个" +msgstr "如果你想塞入最后的插槽值(如你开始时忘了某项但终于找到了),用这个" #: plugins/cheatfind/init.lua:748 #, lua-format @@ -3227,7 +3603,7 @@ msgstr "MARP得分" msgid "Gameinit" msgstr "Gameinit" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "历史" @@ -3250,3 +3626,58 @@ msgstr "MESSinfo" #: plugins/data/data_mameinfo.lua:20 msgid "MAMEinfo" msgstr "MAMEinfo" + +#~ msgid "Custom UI Settings" +#~ msgstr "连发设定" + +#~ msgid "Software Usage" +#~ msgstr "软件用法" + +#~ msgid "Usage" +#~ msgstr "用法" + +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "使用者介面" + +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "语言" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "采样文件" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "作弊码文件 (cheat)" + +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "标题图 (titles)" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "结束图 (ends)" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "游戏结束" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "标题图" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "结束图" + +#~ msgid "This machine has no input map." +#~ msgstr "此机台没有输入对应表" + +#~ msgid "Select" +#~ msgstr "选择" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "Rom套: %1$-.100s" diff --git a/language/Chinese_Traditional/strings.po b/language/Chinese_Traditional/strings.po index 522314d1fc0..d7af4b59c43 100644 --- a/language/Chinese_Traditional/strings.po +++ b/language/Chinese_Traditional/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2021-05-30 17:40+0800\n" "Last-Translator: YuiFAN\n" "Language-Team: MAME Language Team\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -27,11 +27,11 @@ msgstr "" "\n" "按任意鍵繼續" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "此驅動需要額外載入下列裝置的映像檔: " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" @@ -40,7 +40,7 @@ msgstr "" "啟用 UI 控制\n" "以 %1$s 切換" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" @@ -49,7 +49,7 @@ msgstr "" "停用 UI 控制\n" "以 %1$s 切換" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -62,185 +62,185 @@ msgstr "" "按『%1$s』退出,\n" "按『%2$s』繼續模擬。" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "主音量" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s 音量" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "超頻 CPU %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "超頻 %1$s 聲音" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s 更新率" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s 亮度" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s 對比" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s Gamma 值" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s 水平延展" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s 水平位置" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s 垂直延展" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s 垂直位置" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "雷射影碟 %1$s 水平延展" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "雷射影碟 %1$s 水平位置" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "雷射影碟 %1$s 垂直延展" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "雷射影碟 %1$s 垂直位置" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "向量閃爍度" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "最小光束寬度" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "最大光束寬度" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "光束點大小" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "光束強度" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "十字準星尺度 %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "十字準星位移 %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "十字準星尺度 X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "十字準星尺度 Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "十字準星位移 X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "十字準星位移 Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**儲存 ui.ini 時發生錯誤**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**儲存 %s.ini 時發生錯誤**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -250,7 +250,7 @@ msgstr "" " 設定已儲存 \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -259,8 +259,8 @@ msgstr "" "%s\n" " 已新增至最愛清單。" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -269,33 +269,33 @@ msgstr "" "%s\n" " 已從最愛清單移除。" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d 軟體套件 )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "驅動程式: \"%1$s\" 軟體清單 " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - 搜尋: %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "搜尋: %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "聲音選項" @@ -323,7 +323,7 @@ msgstr "自訂 UI" msgid "Configure Directories" msgstr "設定目錄" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[空插槽]" @@ -332,7 +332,7 @@ msgstr "[空插槽]" msgid "[create]" msgstr "[建立]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[軟體清單]" @@ -341,23 +341,23 @@ msgstr "[軟體清單]" msgid "Error accessing %s" msgstr "錯誤存取 %s" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "選擇存取模式" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "唯讀" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "讀寫" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "讀取此映像檔,寫入至其他映像檔" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "讀取此映像檔,寫入差異檔" @@ -377,7 +377,7 @@ msgstr "重新選擇上次執行的機台" msgid "Enlarge images in the right panel" msgstr "放大右側面版的圖片" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "作弊引擎" @@ -669,36 +669,36 @@ msgstr "同步更新" msgid "Wait Vertical Sync" msgstr "等待垂直同步" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "開" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "關" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "自動" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "啟動機台" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "回到機台" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "結束" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "回上一層選單" @@ -736,86 +736,107 @@ msgid "Cannot change options while recording!" msgstr "正在錄製時無法變更選項!" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "保護" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "計時" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "圖形" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "色盤" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "聲音" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "擷取硬體" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "相機" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "麥克風" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "控制" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "鍵盤" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "滑鼠" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "媒體" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "磁碟" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "印表機" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "磁帶" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "打孔帶" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "磁鼓" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "固態儲存" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "通訊" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "區域網路" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "外部網路" @@ -896,8 +917,8 @@ msgid "" "experience this machine.\n" msgstr "" "\n" -"此機台的部分元件無法模擬,因其需要實際活動的互動或機械裝置的組合。" -"故無法達成此機台的完成體驗。\n" +"此機台的部分元件無法模擬,因其需要實際活動的互動或機械裝置的組合。故無法達成" +"此機台的完成體驗。\n" #: src/frontend/mame/ui/info.cpp:315 #, c-format @@ -999,28 +1020,28 @@ msgstr "部分支援" msgid "[empty]" msgstr "[ 空 ]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[ 檔案管理員 ]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "切換項目順序" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "切換順序:目前項目依照 %s 排序" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "短檔名" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "描述" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[ 完整清單 ]" @@ -1028,11 +1049,11 @@ msgstr "[ 完整清單 ]" msgid "File Already Exists - Override?" msgstr "檔案已存在 — 是否覆蓋?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "否" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "是" @@ -1073,7 +1094,7 @@ msgstr "自然" msgid "Emulated" msgstr "模擬" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "%1$s [root%2$s]" @@ -1090,189 +1111,358 @@ msgstr "已啟用" msgid "Disabled" msgstr "已停用" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "開發商" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "發行日 " + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "未篩選" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "可用" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "不可用" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "可以執行" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "不可執行" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "機械式" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "非機械式" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "類別" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "最愛" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "BIOS" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "非 BIOS" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "母檔" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "仿製版" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "製造商" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "年代" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "已支援即時存檔" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "未支援即時存檔" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "需要 CHD" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "不需要 CHD" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "垂直螢幕" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "水平螢幕" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "自訂篩選" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "未篩選" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "可用" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "不可用" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "最愛" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "母檔" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "仿製版" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "年代" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "出版商" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "開發商" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "已支援" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "部分支援" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "不支援" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "釋出區域" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "裝置類別" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "軟體清單" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "自訂篩選" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "<設定篩選>" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "選擇自訂篩選:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "篩選 %1$u" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "移除最後篩選" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "新增篩選" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "選擇類別:" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "[沒有類別 INI 檔案]" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "[INI 檔案中無群組]" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "沒有找到類別 INI 檔案" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "檔案" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "類別檔案中沒有找到群組" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "群組" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "包含仿製版" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "軟體用法" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "版本: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "重設" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1281,7 +1471,7 @@ msgstr "" "執行時間: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1290,7 +1480,7 @@ msgstr "" "執行時間: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1299,88 +1489,92 @@ msgstr "" "彩票分配數: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "投幣數 %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "投幣數 %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (已鎖定)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "P$d 可見度" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "P%d 十字準星" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "可見度延遲" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml 已儲存於 ui 資料夾下。" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "名稱: 描述:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt 已儲存於 ui 資料夾下。" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "匯出 XML 格式清單 (同 -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "匯出 TXT 格式清單 (同 -listxml,但不包含裝置)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "匯出 TXT 格式清單 (同 -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "驅動程式" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "此機台沒有 BIOS。" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "新增至最愛" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "從最愛移除" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "儲存機台設定" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "設定機台:" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (預設)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "外掛" @@ -1392,23 +1586,41 @@ msgstr "偽終端" msgid "[failed]" msgstr "[ 錯誤 ]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "未找到已儲存的狀態" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "載入狀態" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "選擇要載入的狀態" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "儲存狀態" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "按下鍵盤按鍵、搖桿按鈕或選擇狀態以覆寫" @@ -1431,8 +1643,8 @@ msgid "Other Controls" msgstr "其他控制" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." -msgstr "此機台沒有輸入對應表" +msgid "This machine has no configurable inputs." +msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 msgid "Pressed" @@ -1443,27 +1655,27 @@ msgstr "按住" msgid "Invalid sequence entered" msgstr "輸入了無效序列" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "[root%1$s]" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "按下 %1$s 設定\n" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "按下 %1$s 加入\n" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "按下 %1$s 清除\n" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "按下 %1$s 還原預設值\n" @@ -1516,7 +1728,8 @@ msgstr "無法跨目錄儲存" msgid "" "The software selected is missing one or more required ROM or CHD images.\n" "Please acquire the correct files or select a different one." -msgstr "選定的軟體缺少一個或多個必要的 ROM 或 CHD 映像檔\n" +msgstr "" +"選定的軟體缺少一個或多個必要的 ROM 或 CHD 映像檔\n" "請取得正確的檔案或選擇不同的檔案。" #: src/frontend/mame/ui/simpleselgame.cpp:150 @@ -1539,11 +1752,11 @@ msgid "" msgstr "" "找不到機台,請檢查 %1$s.ini 的 ROM 目錄設定\n" "\n" -"如果是首次使用 %2$s,請參閱 docs 目錄中的 config.txt 以取得設定 %2$s 的相關" -"資訊。" +"如果是首次使用 %2$s,請參閱 docs 目錄中的 config.txt 以取得設定 %2$s 的相關資" +"訊。" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "設定選項" @@ -1557,7 +1770,7 @@ msgid "Type name or select: (random)" msgstr "輸入名稱或選擇: (隨機)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1568,52 +1781,52 @@ msgid "Driver: %1$-.100s" msgstr "驅動程式: %-.100s\n" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "整體: 不可執行" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "整體: 未模擬保護" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "整體: 可以執行" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "圖形: 不完整," #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "圖形: 不完美, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "圖形: OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "聲音: 無" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "聲音: 無法執行" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "聲音: 不完美" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "聲音: OK" @@ -1639,466 +1852,523 @@ msgid "Reload All" msgstr "全部重新載入" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROM" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "軟體媒體" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "使用者介面" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "語言" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "裝飾圖" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "樣本檔" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "十字準星" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "文件" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INI" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "文件" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "類別 INI" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "擷圖" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "圖示" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "擷圖" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "操作檯" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "筐體圖" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "廣告圖" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "標題圖" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "結束圖" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "PCB 圖" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "標籤圖" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "操作檯" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "十字準星" +msgctxt "path-option" +msgid "PCBs" +msgstr "PCB 圖" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "裝飾圖" +msgctxt "path-option" +msgid "Flyers" +msgstr "廣告圖" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "首領" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" msgstr "裝飾圖預覽" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "選擇" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "遊戲結束" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "說明圖" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "標題圖" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "得分" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "對戰" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "封面" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "資料夾設定" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "目前 %1$s 資料夾" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "變更資料夾" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "新增資料夾" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "移除資料夾" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "變更 %1$s 資料夾 - 搜尋: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "新增 %1$s 資料夾 - 搜尋: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "按下 TAB 鍵設定" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "移除 %1$s 資料夾" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " 色彩" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " PENS" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "設定機台" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "ROM組\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "年代\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "製造商\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "驅動程式相容於\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "驅動程式為主檔\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "類比控制\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "鍵盤輸入\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "整體\t不可執行\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "整體\t未模擬保護\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "整體\t可以執行\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "圖形\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "圖形\t色彩錯誤\n" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "圖形\t色彩不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "圖形\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "圖形\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "聲音\t無\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "聲音\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "聲音\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "聲音\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "擷取\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "擷取\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "相機\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "相機\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "麥克風\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "麥克風\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "控制\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "控制\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "鍵盤\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "鍵盤\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "滑鼠\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "滑鼠\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "媒體\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "媒體\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "磁碟\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "磁碟\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "印表機\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "印表機\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "磁帶\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "磁帶\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "打孔帶\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "打孔帶\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "磁鼓\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "磁鼓\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "(EP)ROM\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "(EP)ROM\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "通訊\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "通訊\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "區域網路\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "區域網路\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "外部網路\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "外部網路\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "計時\t無法執行\n" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "計時\t不完美\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "機械式機台\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "機械式機台\t否\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "需要裝飾圖\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "需要裝飾圖\t否\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "需要可點擊的裝飾圖\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "需要可點擊的裝飾圖\t否\n" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "支援檯面型筐體\t否\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "驅動程式為 BIOS\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "驅動程式為 BIOS\t否\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "支援即時存檔\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "支援即時存檔\t否\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "畫面方向\t垂直\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "畫面方向\t水平\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "需要 CHD\t是\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "需要 CHD\t否\n" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "ROM 驗證結果\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "ROM 驗證結果\t錯誤\n" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "樣本檔驗證結果\t不需要\n" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "樣本檔驗證結果\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "樣本檔驗證結果\t錯誤\n" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" @@ -2106,17 +2376,12 @@ msgstr "" "ROM 驗證 \t停用\n" "樣本檔驗證 \t停用\n" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d 機台 (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "Rom組: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "系統: %1$-.100s" @@ -2130,22 +2395,22 @@ msgstr "選項清單 - 搜尋: " msgid "Double click or press %1$s to select" msgstr "雙擊或按下 %1$s 以選擇" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "驗證標記為不可用的 %1$u 機台 ROM 檔?" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "驗證所有 %1$u 機台的 ROM 檔?" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(結果將儲存至 %1$s)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" @@ -2154,7 +2419,7 @@ msgstr "" "正在驗證供機台 %2$u 的 %3$u ROM 檔...\n" "%1$s" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "開始驗證" @@ -2174,211 +2439,246 @@ msgstr "隱藏資訊/圖片" msgid "Hide Both" msgstr "隱藏兩者" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "字體" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "顏色" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "語言" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "顯示側面版" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "連射設定" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "預設" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "UI 字體" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "粗體" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "斜體" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "行" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "資訊字體大小" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "UI 字體設定" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "文字樣本~永東國酬愛鬱靈鷹袋、南去經三國,東來過五湖。" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "一般文字" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "選擇色彩" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "一般文字背景" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "已選擇背景顏色" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "子項目顏色" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "相容版本" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "邊框" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "背景" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "機台設定開關" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "未擁有遊戲顏色" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "參數調整" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "圖形檢視器背景" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "滑鼠經過顏色" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "滑鼠經過背景顏色" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "滑鼠按下顏色" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "滑鼠按下背景顏色" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "還原至原本顏色" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "UI 色彩設定" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "雙擊或按下 %1$s 以改變顏色值" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "選單預覽" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "一般項目" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "子項目" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "已選擇" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "滑鼠經過" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "ARGB 設定" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "透明度" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "紅" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "綠" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "藍" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "從色盤選擇" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "顏色預覽 =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "白" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "銀" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "灰" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "黑" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "紅" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "橘" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "黃" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "綠" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "藍" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "紫" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2485,143 +2785,221 @@ msgid "Select New Machine" msgstr "選擇新機台" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "擷圖" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "筐體圖" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" msgstr "操作檯" +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "PCB 圖" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "廣告圖" + #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "裝飾圖預覽" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "首領" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "標題圖" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "對戰" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "遊戲結束" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "說明圖" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "得分" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "標籤圖" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "封面" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "新增或移除最愛" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "匯出顯示的清單至檔案" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "顯示文件檢視" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "軟體部分選項:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "選擇 BIOS:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "軟體相容於: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "軟體為主檔" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "已支援: 否" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "已支援: 部分" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "已支援: 是" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "Rom組: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "驅動程式相容於: %-.100s" +msgid "Romset: %1$-.100s" +msgstr "Rom組: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "驅動程式為主檔" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "驅動程式相容於: %-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "圖片" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "資訊" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -"選定系統所需要的 ROM / 磁碟映像檔為缺少或不正確。" -"請取得正確的檔案或選擇不同的系統。\n" +"選定系統所需要的 ROM / 磁碟映像檔為缺少或不正確。請取得正確的檔案或選擇不同的" +"系統。\n" "\n" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -"選定軟體所需要的 ROM / 磁碟映像檔為缺少或不正確。" -"請取得正確的檔案或選擇不同的軟體項目。\n" +"選定軟體所需要的 ROM / 磁碟映像檔為缺少或不正確。請取得正確的檔案或選擇不同的" +"軟體項目。\n" "\n" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "不正確的檢查碼" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "不正確的長度" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "未找到" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "%1$s (%2$s) - %3$s\n" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "%1$s - %2$s\n" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "按任意鍵繼續。" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "用法" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "一般資訊" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "聲音" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "取樣頻率" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "使用外部樣本檔" @@ -2993,15 +3371,13 @@ msgstr "測試/寫入塞入值" msgid "" "Use this if you want to poke the Slot 1 value (eg. You started with " "something but lost it)" -msgstr "" -"如果你想塞入插槽 1 的值(如你開始某事但忘了),用這個" +msgstr "如果你想塞入插槽 1 的值(如你開始某事但忘了),用這個" #: plugins/cheatfind/init.lua:746 msgid "" "Use this if you want to poke the Last Slot value (eg. You started without an " "item but finally got it)" -msgstr "" -"如果你想塞入最後的插槽值(如你開始時忘了某項但終於找到了),用這個" +msgstr "如果你想塞入最後的插槽值(如你開始時忘了某項但終於找到了),用這個" #: plugins/cheatfind/init.lua:748 #, lua-format @@ -3227,7 +3603,7 @@ msgstr "MARPScore" msgid "Gameinit" msgstr "Gameinit" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "歷史" @@ -3250,3 +3626,58 @@ msgstr "MESSinfo" #: plugins/data/data_mameinfo.lua:20 msgid "MAMEinfo" msgstr "MAMEinfo" + +#~ msgid "Custom UI Settings" +#~ msgstr "連射設定" + +#~ msgid "Software Usage" +#~ msgstr "軟體用法" + +#~ msgid "Usage" +#~ msgstr "用法" + +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "使用者介面" + +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "語言" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "樣本檔" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "作弊引擎" + +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "標題圖" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "結束圖" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "遊戲結束" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "標題圖" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "結束圖" + +#~ msgid "This machine has no input map." +#~ msgstr "此機台沒有輸入對應表" + +#~ msgid "Select" +#~ msgstr "選擇" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "Rom組: %1$-.100s" diff --git a/language/Croatian/strings.po b/language/Croatian/strings.po index b58c6ebe7ef..c526ff87c46 100644 --- a/language/Croatian/strings.po +++ b/language/Croatian/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -18,32 +18,32 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -52,233 +52,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -306,7 +306,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -315,7 +315,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -324,23 +324,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -360,7 +360,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -652,36 +652,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -719,86 +719,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -962,28 +983,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -991,11 +1012,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1036,7 +1057,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1053,291 +1074,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1349,23 +1543,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1388,7 +1600,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1400,27 +1612,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1493,7 +1705,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1507,7 +1719,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1518,52 +1730,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1587,482 +1799,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2076,29 +2340,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2118,211 +2382,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2429,137 +2728,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3147,7 +3524,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Czech/strings.po b/language/Czech/strings.po index 7a1b9301de2..b9c97687195 100644 --- a/language/Czech/strings.po +++ b/language/Czech/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-04-01 16:38+0200\n" "Last-Translator: Karel Brejcha <pankabre@gmail.com>\n" "Language-Team: MAME Language Team\n" @@ -18,7 +18,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Poedit 1.8.7\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -28,26 +28,26 @@ msgstr "" "\n" "Stiskni klávesu pro pokračování" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" "Tento ovladač vyžaduje aby byl obraz media nahrán do následujících zařízení: " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -60,185 +60,185 @@ msgstr "" "Stiskni ''%1$s'' pro ukončení,\n" "Stiskni ''%2$s'' pro návrat do emulace." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Hlavní hlasitost" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s hlasitost" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "Přetakt CPU %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s Obnovovací frekvence" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s Jas" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s Kontrast" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s Gamma" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s Horiz Roztah" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s Horiz Pozice" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s Vert Roztah" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s Vert Pozice" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "Laserdisc '%1$s' Horiz Roztah" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "Laserdisc '%1$s' Horiz Pozice" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "Laserdisc '%1$s' Vert Roztah" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "Laserdisc '%1$s' Vert Pozice" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Vektor Blikač" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Minimální šířka svazku" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Maximální šířka svazku" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Váha intenzity svazku" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Zaměřovač škála %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Zaměřovač posun %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Zaměřovač škála X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Zaměřovač škála Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Zaměřovač posun X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Zaměřovač posun Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**Chyba ukládání ui.ini**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**Chyba ukládání %s.ini**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -248,7 +248,7 @@ msgstr "" " Configurace uložena \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -257,8 +257,8 @@ msgstr "" "%s\n" " přidán do seznamu oblíbených." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -267,33 +267,33 @@ msgstr "" "%s\n" " odstraněn ze seznamu oblíbených." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Driver: \"%1$s\" software list " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Možnosti zvuku" @@ -321,7 +321,7 @@ msgstr "Upravení UI" msgid "Configure Directories" msgstr "Konfigurace složek" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[prázdný slot]" @@ -330,7 +330,7 @@ msgstr "[prázdný slot]" msgid "[create]" msgstr "[vytvořit]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[software list]" @@ -339,23 +339,23 @@ msgstr "[software list]" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Vyber přístupový režim" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Pouze čtení" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Čtení-Zápis" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Číst tento obrázek, zapsat do jiného obrázku" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Číst tento obrázek, zapsat do diff" @@ -375,7 +375,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "Zvětši obrázky v pravém panelu" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Cheaty" @@ -401,7 +401,7 @@ msgstr "Použij obrázek jako pozadí" #: src/frontend/mame/ui/submenu.cpp:41 msgid "Skip BIOS selection menu" -msgstr "" +msgstr "Přeskoč menu s výběrem BIOSu" #: src/frontend/mame/ui/submenu.cpp:42 msgid "Skip software parts selection menu" @@ -667,36 +667,36 @@ msgstr "Synchronizované obnovení" msgid "Wait Vertical Sync" msgstr "Čekat na V-Sync" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "Zapnuto" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Vypnuto" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Automaticky" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Zpět na zařízení" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Ukončení" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Zpět na předchozí menu" @@ -734,86 +734,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -908,6 +929,9 @@ msgid "" "\n" "There are working clones of this machine: %s" msgstr "" +"\n" +"\n" +"Existují funkční klony tohoto zařízení: %s" #: src/frontend/mame/ui/info.cpp:339 #, c-format @@ -998,28 +1022,28 @@ msgstr "Částečná podpora" msgid "[empty]" msgstr "[prázdný]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[souborový manažer]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Přepnout řazení" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "Přepnuté řazení: záznamy nyní řazeny podle %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "shortname" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "popis" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[kompatibilní seznamy]" @@ -1027,11 +1051,11 @@ msgstr "[kompatibilní seznamy]" msgid "File Already Exists - Override?" msgstr "Soubor již existuje - Přepsat?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "Ne" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Ano" @@ -1072,7 +1096,7 @@ msgstr "Přirozená" msgid "Emulated" msgstr "Emulovaná" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1089,189 +1113,358 @@ msgstr "Aktivováno" msgid "Disabled" msgstr "Deaktivováno" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" -msgstr "" +msgstr "Kategorie" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" -msgstr "" +msgstr "Rok" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "Rok" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" +msgstr "Vydavatel" + +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" -msgstr "" +msgstr "Typ zařízení" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" +msgstr "Software List" + +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Vyber uživatelský filtr:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Odstranit poslední filtr" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Přidat filtr" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" -msgstr "" +msgstr "Soubor" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Software použití" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Verze: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Reset" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1280,7 +1473,7 @@ msgstr "" "Čas běhu: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1289,7 +1482,7 @@ msgstr "" "Čas běhu: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1298,88 +1491,92 @@ msgstr "" "Lístků zahozeno: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Mince %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Mince %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (zamčeno)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Viditelné zpoždění" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml uložen v ui složce." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Jméno: Popis:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt uložen v ui složce." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Přidat do oblíbených" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Odstranit z oblíbených" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (standardní)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Pluginy" @@ -1391,30 +1588,48 @@ msgstr "Pseudo terminály" msgid "[failed]" msgstr "[chybný]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" #: src/frontend/mame/ui/slotopt.cpp:192 #, c-format msgid "%s [internal]" -msgstr "" +msgstr "%s [interní]" #: src/frontend/mame/ui/inputmap.cpp:38 msgid "User Interface" @@ -1430,7 +1645,7 @@ msgid "Other Controls" msgstr "Ostatní ovládání" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1442,27 +1657,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1539,7 +1754,7 @@ msgstr "" "složce docs na informace o konfiguraci %2$s." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Možnosti konfigurace" @@ -1553,7 +1768,7 @@ msgid "Type name or select: (random)" msgstr "Napiš jméno nebo vyber: (náhodně)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1564,52 +1779,52 @@ msgid "Driver: %1$-.100s" msgstr "Driver: %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "Celkově: NEFUNGUJE" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "Celkově: Neemulovaná ochrana" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "Celkově: Funguje" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Grafika: Nedokonalá, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Grafika: OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Zvuk: Neimplementován" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Zvuk: Nedokonalý" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Zvuk: OK" @@ -1635,482 +1850,534 @@ msgid "Reload All" msgstr "Znovu načíst vše" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROMs" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "UI" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Jazyk" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Samply" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Zaměřovače" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DATs" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INIs" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DATs" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Náhledy" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Ikony" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Náhledy" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Ovládací panely" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Kastle" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Plakáty" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Titulky" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Zakončení" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "Desky spojů" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "Marquees" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Ovládací panely" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Zaměřovače" +msgctxt "path-option" +msgid "PCBs" +msgstr "Desky spojů" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Artworky" +msgctxt "path-option" +msgid "Flyers" +msgstr "Plakáty" + +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Bossové" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" msgstr "Náhledy artworků" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "Výběr" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "GameOver" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "Jak na to" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Loga" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Skóre" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Versus" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Obaly" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Nastavení složek" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Aktuální %1$s složky" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Změnit složku" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Přidat složku" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Odstranit složku" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "Změnit %1$s Složku - Hledat: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "Přidat %1$s Složku - Hledat: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Stiskni TAB pro nastavení" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "Odstranit %1$s Složku" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " BARVY" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " PERA" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" -msgstr "" +msgstr "Romset\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" -msgstr "" +msgstr "Rok\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" -msgstr "" +msgstr "Výrobce\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" -msgstr "" +msgstr "Driver je Klon\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" -msgstr "" +msgstr "Driver je Parent\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" -msgstr "" +msgstr "Celkově\tNEFUNGUJE\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" -msgstr "" +msgstr "Celkově\tNeemulovaná ochrana\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" -msgstr "" +msgstr "Celkově\tFunguje\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" -msgstr "" +msgstr "Grafika\tNedokonalé barvy\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" -msgstr "" +msgstr "Grafika\tNedokonalá\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" -msgstr "" +msgstr "Grafika\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" -msgstr "" +msgstr "Zvuk\tNeimplementován\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" -msgstr "" +msgstr "Zvuk\tNedokonalý\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" -msgstr "" +msgstr "Zvuk\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" -msgstr "" +msgstr "Orientace obrazovky\tVertikální\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" -msgstr "" +msgstr "Orientace obrazovky\tHorizontální\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d zařízení (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "Romset: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "Systém: %1$-.100s" @@ -2124,29 +2391,29 @@ msgstr "Seznam výběru - Hledání: " msgid "Double click or press %1$s to select" msgstr "Dvojklik nebo stisk %1$s pro výběr" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2166,212 +2433,247 @@ msgstr "Skrýt info/obrázek" msgid "Hide Both" msgstr "Skrýt obojí" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Písma" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Barvy" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Jazyk" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Zobraz postranní panely" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Uživatelská nastavení UI" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "standardní" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "UI Písmo" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Tučné" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Kurzíva" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Linie" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Velikost info textů" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Nastavení písma UI" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "Ukázkový text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Normální text" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Vybraná barva" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Pozadí normálního textu" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Barva pozadí vybraného textu" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Barva podpoložky" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Klon" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Okraj" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Pozadí" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "DIP přepínač" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Barva nedostupné položky" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Barva posuvníku" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Pozadí Gfx prohlížeče" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Barva při přejetí myši" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Barva pozadí při přejetí myši" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Barva při stisku myši" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Barva pozadí při stisku myši" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Obnovit původní barvy" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Nastavení barev UI" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "Dvojklik nebo stisk %1$s pro změnu barvy" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Menu náhled" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Normální" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Podpoložka" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Vybraný" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Přejetí myši" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" -msgstr "" +msgstr "ARGB nastavení" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Průhlednost" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Červená" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Zelená" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Modrá" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Výběr z palety" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Barevný náhled =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Bílá" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Stříbrná" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Šedá" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Černá" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Červená" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Oranžová" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Žlutá" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Zelená" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Modrá" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Fialová" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2402,7 +2704,7 @@ msgstr "Analogové ovladače" #: src/frontend/mame/ui/mainmenu.cpp:71 msgid "DIP Switches" -msgstr "" +msgstr "DIP přepínače" #: src/frontend/mame/ui/mainmenu.cpp:73 msgid "Machine Configuration" @@ -2434,7 +2736,7 @@ msgstr "Ovládání kazetového přehrávače" #: src/frontend/mame/ui/mainmenu.cpp:101 msgid "BIOS Selection" -msgstr "" +msgstr "Výběr BIOSu" #: src/frontend/mame/ui/mainmenu.cpp:104 msgid "Slot Devices" @@ -2478,137 +2780,215 @@ msgid "Select New Machine" msgstr "Vyber nové zařízení" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Panely ovládání" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Náhledy" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Náhled artworku" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Bossové" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Versus" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Konec hry" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Jak na to" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Skóre" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Obaly" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Přidat nebo odebrat z oblíbených" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Export zobrazeného seznamu do souboru" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "Zobraz DAT pohled" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Výběr části software:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "Software je klon: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "Software je parent" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Podpora: Ne" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Podpora: Částečně" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Podpora: Ano" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "Driver je klon: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "Romset: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "Driver je parent" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "Driver je klon: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Obrázky" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Informace" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Využití" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Základní informace" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Zvuk" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Vzorkovací frekvence" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Použít externí samply" @@ -3196,7 +3576,7 @@ msgstr "" msgid "Gameinit" msgstr "Gameinit" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Historie" @@ -3216,17 +3596,85 @@ msgstr "" msgid "MAMEinfo" msgstr "" -#~ msgid "Backdrops" -#~ msgstr "Pozadí" +#~ msgid "Custom UI Settings" +#~ msgstr "Uživatelská nastavení UI" + +#~ msgid "Software Usage" +#~ msgstr "Software použití" + +#~ msgid "Usage" +#~ msgstr "Využití" + +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "UI" + +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Jazyk" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Samply" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Cheaty" + +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "Titulky" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "Zakončení" + +#~ msgctxt "path-option" +#~ msgid "Artworks" +#~ msgstr "Artworky" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "GameOver" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Cabinets" +#~ msgstr "Kastle" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Control Panels" +#~ msgstr "Panely ovládání" + +#~ msgctxt "selmenu-artwork" +#~ msgid "PCBs" +#~ msgstr "Desky spojů" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Flyers" +#~ msgstr "Plakáty" -#~ msgid "Overlays" -#~ msgstr "Popředí" +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "Titulky" -#~ msgid "Bezels" -#~ msgstr "Bezels" +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Zakončení" -#~ msgid "CPanels" -#~ msgstr "CPanely" +#~ msgctxt "selmenu-artwork" +#~ msgid "Logos" +#~ msgstr "Loga" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Marquees" +#~ msgstr "Marquees" + +#~ msgid "Select" +#~ msgstr "Výběr" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "romset: %1$-.100s" #~ msgid "View" #~ msgstr "Pohled" @@ -3237,9 +3685,6 @@ msgstr "" #~ msgid "Full" #~ msgstr "Plný" -#~ msgid "Dip Switches" -#~ msgstr "DIP přepínače" - #~ msgid "Select position to load from" #~ msgstr "Vyber pozici pro načtení" @@ -3299,12 +3744,6 @@ msgstr "" #~ "Vybranému softwaru chybí jedna nebo více požadovaných ROM nebo CHD. " #~ "Prosím, vyberte jiný." -#~ msgid "Vertical" -#~ msgstr "Vertikální" - -#~ msgid "Horizontal" -#~ msgstr "Horizontální" - #~ msgid "Unimplemented" #~ msgstr "Neimplementovaný" @@ -3323,12 +3762,6 @@ msgstr "" #~ msgid "Extra INIs" #~ msgstr "Extra INIs" -#~ msgid " ^!File" -#~ msgstr " ^!Soubor" - -#~ msgid " ^!Category" -#~ msgstr " ^!Kategorie" - #~ msgid "%1$s (%2$s - %3$s) - " #~ msgstr "%1$s (%2$s - %3$s) - " @@ -3344,21 +3777,6 @@ msgstr "" #~ msgid "Other filter" #~ msgstr "Další filtr" -#~ msgid "^!Manufacturer" -#~ msgstr "^!Výrobce" - -#~ msgid "^!Year" -#~ msgstr "^!Rok" - -#~ msgid "^!Publisher" -#~ msgstr "^!Vydavatel" - -#~ msgid "^!Software List" -#~ msgstr "^!Software List" - -#~ msgid "^!Device type" -#~ msgstr "^!Typ zařízení" - #~ msgid "^!Region" #~ msgstr "^!Region" @@ -3368,33 +3786,9 @@ msgstr "" #~ msgid "Region: %1$s -" #~ msgstr "Region: %1$s -" -#~ msgid "Publisher: %1$s -" -#~ msgstr "Vydavatel: %1$s -" - -#~ msgid "Year: %1$s -" -#~ msgstr "Rok: %1$s -" - -#~ msgid "Software List: %1$s -" -#~ msgstr "Software List: %1$s -" - -#~ msgid "Device type: %1$s -" -#~ msgstr "Typ zařízení: %1$s -" - #~ msgid "%s Search: %s_" #~ msgstr "%s Hledání: %s_" -#~ msgid "Bios selection:" -#~ msgstr "Výběr BIOSu:" - -#~ msgid "Skip bios selection menu" -#~ msgstr "Přeskoč menu s výběrem BIOSu" - -#~ msgid "Bios Selection" -#~ msgstr "Výběr BIOSu" - -#~ msgid " - ARGB Settings" -#~ msgstr " - ARGB nastavení" - #~ msgid "Software History" #~ msgstr "Software historie" @@ -3441,60 +3835,6 @@ msgstr "" #~ "interakci nebo se skládají z mechanických zařízení. Není možné naplno " #~ "rozeběhnout toto zařízení.\n" -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "There are working clones of this machine: " -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Existují funkční klony tohoto zařízení: " - -#~ msgid "Romset: %1$-.100s\n" -#~ msgstr "Romset: %1$-.100s\n" - -#~ msgid "Year: %1$s\n" -#~ msgstr "Rok: %1$s\n" - -#~ msgid "Manufacturer: %1$-.100s\n" -#~ msgstr "Výrobce: %1$-.100s\n" - -#~ msgid "Driver is Clone of: %1$-.100s\n" -#~ msgstr "Driver je Klon: %1$-.100s\n" - -#~ msgid "Driver is Parent\n" -#~ msgstr "Driver je Parent\n" - -#~ msgid "Overall: NOT WORKING\n" -#~ msgstr "Celkově: NEFUNGUJE\n" - -#~ msgid "Overall: Unemulated Protection\n" -#~ msgstr "Celkově: Neemulovaná ochrana\n" - -#~ msgid "Overall: Working\n" -#~ msgstr "Celkově: Funguje\n" - -#~ msgid "Graphics: Imperfect Colors\n" -#~ msgstr "Grafika: Nedokonalé barvy\n" - -#~ msgid "Graphics: Imperfect\n" -#~ msgstr "Grafika: Nedokonalá\n" - -#~ msgid "Graphics: OK\n" -#~ msgstr "Grafika: OK\n" - -#~ msgid "Sound: Unimplemented\n" -#~ msgstr "Zvuk: Neimplementován\n" - -#~ msgid "Sound: Imperfect\n" -#~ msgstr "Zvuk: Nedokonalý\n" - -#~ msgid "Sound: OK\n" -#~ msgstr "Zvuk: OK\n" - -#~ msgid "Driver is Skeleton: %1$s\n" -#~ msgstr "Driver je Kostra: %1$s\n" - #~ msgid "Game is Mechanical: %1$s\n" #~ msgstr "Hra je mechanická: %1$s\n" @@ -3513,9 +3853,6 @@ msgstr "" #~ msgid "Support Save: %1$s\n" #~ msgstr "Podpora Save: %1$s\n" -#~ msgid "Screen Orientation: %1$s\n" -#~ msgstr "Orientace obrazovky: %1$s\n" - #~ msgid "Requires CHD: %1$s\n" #~ msgstr "Vyžaduje CHD: %1$s\n" @@ -3546,9 +3883,6 @@ msgstr "" #~ msgid "No Infos Available" #~ msgstr "Žádné dostupné informace" -#~ msgid " [internal]" -#~ msgstr " [interní]" - #~ msgid "DATs info" #~ msgstr "DAT informace" diff --git a/language/Danish/strings.po b/language/Danish/strings.po index e1c7cf99705..efd536fd2e3 100644 --- a/language/Danish/strings.po +++ b/language/Danish/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -18,32 +18,32 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -52,233 +52,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -306,7 +306,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -315,7 +315,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -324,23 +324,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -360,7 +360,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -652,36 +652,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -719,86 +719,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -962,28 +983,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -991,11 +1012,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1036,7 +1057,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1053,291 +1074,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1349,23 +1543,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1388,7 +1600,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1400,27 +1612,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1493,7 +1705,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1507,7 +1719,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1518,52 +1730,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1587,482 +1799,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2076,29 +2340,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2118,211 +2382,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2429,137 +2728,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3147,7 +3524,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Dutch/strings.po b/language/Dutch/strings.po index 7f8b81f78d9..546cd39b6c9 100644 --- a/language/Dutch/strings.po +++ b/language/Dutch/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2021-04-04 13:08+0200\n" "Last-Translator: Jos van Mourik\n" "Language-Team: MAME Language Team\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.4.2\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -29,25 +29,25 @@ msgstr "" "\n" "Druk op een toets om door te gaan" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "Deze driver vereist software ingelezen in de volgende device(s): " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -60,185 +60,185 @@ msgstr "" "Druk op ''%1$s'' om te stoppen,\n" "druk op ''%2$s'' om terug te keren naar de emulatie." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Hoofdvolume" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s volume" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "Overklok CPU %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "Overklok %1$s geluid" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s Verversingfrequentie" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s Helderheid" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s Contrast" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s Gamma" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s Horizontale uitrekking" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s Horizontale positie" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s Verticale uitrekking" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s Verticale positie" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "Laserdisc '%1$s' Horiz uitrekking" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "Laserdisc '%1$s' Horiz positie" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "Laserdic '%1$s' Vert uitrekking" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "Laserdisc '%1$s' Vert positie" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Vectorflikker" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Minimale straalbreedte" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Maximale straalbreedte" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Gewicht straalintensiteit" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Vizierschaal %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Vizieroffset %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Vizier X-schaal %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Vizier Y-schaal %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Vizier X-offset %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Vizier Y-offset %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**Fout bij het opslaan van ui.ini**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**Fout bij het opslaan van %s.ini**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -248,7 +248,7 @@ msgstr "" " Configuratie opgeslagen\n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -257,8 +257,8 @@ msgstr "" "%s\n" " toegevoegd aan favorietenlijst." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -267,33 +267,33 @@ msgstr "" "%s\n" " verwijderd uit favorietenlijst." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d softwarepakketten )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Driver: \"%1$s\" softwarelijst " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - Zoek: %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "Zoek: %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Geluid opties" @@ -321,7 +321,7 @@ msgstr "Gebruikersinterface aanpassen" msgid "Configure Directories" msgstr "Mappen configureren" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[lege plek]" @@ -330,7 +330,7 @@ msgstr "[lege plek]" msgid "[create]" msgstr "[aanmaken]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[softwarelijst]" @@ -339,23 +339,23 @@ msgstr "[softwarelijst]" msgid "Error accessing %s" msgstr "Fout bij toegang tot %s" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Selecteer toegangsmodus" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Alleen-lezen" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Lezen-schrijven" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Lees dit bestand, schrijf naar een ander bestand" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Lees dit bestand, schrijf naar diff" @@ -375,7 +375,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "Vergroot afbeeldingen in het rechter paneel" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Cheats" @@ -667,36 +667,36 @@ msgstr "Gesynchroniseerde verversing" msgid "Wait Vertical Sync" msgstr "Wacht verticale sync" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "Aan" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Uit" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Automatisch" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Terug naar machine" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Afsluiten" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Terug naar vorig menu" @@ -734,86 +734,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "beveiliging" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "timing" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "beeld" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "kleurpalet" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "geluid" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "opnamehardware" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "camera" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "microfoon" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "besturing" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "toetsenbord" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "muis" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "media" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "schijf" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "printer" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "magneetband" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "ponsband" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "trommelgeheugen" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "solid state opslag" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "communicatie" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "LAN" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "WAN" @@ -1001,28 +1022,28 @@ msgstr "Gedeeltelijk ondersteund" msgid "[empty]" msgstr "[leeg]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[Bestandsbeheer]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Wijzig onderdeelvolgorde" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "Volgorde gewijzigd: de elementen zijn nu gesorteerd op %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "korte naam" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "omschrijving" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[compatibele lijsten]" @@ -1030,11 +1051,11 @@ msgstr "[compatibele lijsten]" msgid "File Already Exists - Override?" msgstr "Bestand bestaat al - Overschrijven?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "Nee" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Ja" @@ -1075,7 +1096,7 @@ msgstr "Natuurlijk" msgid "Emulated" msgstr "Geëmuleerd" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1092,189 +1113,358 @@ msgstr "Ingeschakeld" msgid "Disabled" msgstr "Uitgeschakeld" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "Ongefilterd" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "Beschikbaar" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "Onbeschikbaar" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "Werkend" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "Niet werkend" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "Mechanisch" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "Niet mechanisch" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "Categorie" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "Favorieten" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "BIOS" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "Geen BIOS" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "Hoofdsoftware" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "Varianten" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "Fabrikant" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "Jaar" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "Ondersteunt opslaan" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "Ondersteunt opslaan niet" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "CHD benodigd" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "Geen CHD benodigd" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "Verticaal scherm" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "Horizontaal scherm" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "Eigen filter" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "Ongefilterd" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "Beschikbaar" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "Onbeschikbaar" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "Favorieten" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "Hoofdsoftware" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "Varianten" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "Jaar" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "Uitgever" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "Ondersteund" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "Gedeeltelijk ondersteund" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "Niet ondersteund" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "Uitgaveregio" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "Apparaattype" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "Softwarelijst" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "Eigen filter" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "<filters instellen>" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Kies eigen filter:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "Filter %1$u" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Verwijder laatste filter" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Filter toevoegen" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "Selecteer categorie:" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "[geen categorie INI-bestanden]" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "[geen groepen in INI-bestand]" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "Geen categorie INI-bestanden gevonden" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "Bestand" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "Geen groepen gevonden in categoriebestand" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "Groep" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "Varianten insluiten" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Softwaregebruik" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Revisie: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Herstel" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1283,7 +1473,7 @@ msgstr "" "In bedrijf: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1292,7 +1482,7 @@ msgstr "" "In bedrijf: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1301,88 +1491,92 @@ msgstr "" "Kaartjes uitgegeven: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Munt %1$c: n.v.t.%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Munt %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (afgeschermd)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Zichtbare vertraging" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml is opgeslagen in de ui map." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Naam: Omschrijving:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt is opgeslagen in de ui-map." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Exporteer lijst in XML-formaat (zoals -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "Exporteer lijst in XML-formaat (zoals -listxml, maar zonder apparaten)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Exporteer lijst in XML-formaat (zoals -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Driver" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "Deze machine heeft geen BIOS." -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Toevoegen aan favorieten" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Verwijderen uit favorieten" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (standaard)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Plugins" @@ -1394,23 +1588,41 @@ msgstr "Pseudoterminals" msgid "[failed]" msgstr "[mislukt]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "Laad state" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "State opslaan" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1433,7 +1645,7 @@ msgid "Other Controls" msgstr "Andere besturing" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1445,27 +1657,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1547,7 +1759,7 @@ msgstr "" "txt in de docs-map voor informatie om %2$s te configureren." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Configureer opties" @@ -1561,7 +1773,7 @@ msgid "Type name or select: (random)" msgstr "Type naam of selecteer: (willekeurig)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1572,52 +1784,52 @@ msgid "Driver: %1$-.100s" msgstr "Driver: %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "Status: NIET WERKEND" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "Status: Ongeëmuleerde beveiliging" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "Status: Werkend" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "Beeld: Niet geïmplementeerd, " #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Beeld: Niet volledig, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Beeld: OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "Geluid: Geen" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Geluid: Niet geïmplementeerd" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Geluid: Niet volledig" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Geluid: OK" @@ -1643,466 +1855,523 @@ msgid "Reload All" msgstr "Alles herladen" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROMs" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "Softwaremedia" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "Gebruikersinterface" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Taal" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "Artwork" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Samples" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Vizieren" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DATs" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INIs" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DATs" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "Categorie-INIs" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Schermafbeeldingen" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Iconen" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Schermafbeeldingen" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Bedieningspanelen" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Kasten" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Flyers" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Titels" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Eindes" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "Printplaten" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "Marquees" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Bedieningspanelen" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Vizieren" +msgctxt "path-option" +msgid "PCBs" +msgstr "Printplaten" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Artwork" +msgctxt "path-option" +msgid "Flyers" +msgstr "Flyers" + +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Eindbazen" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" -msgstr "Artworkvoorvertoning" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "Selecteer" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "Gameover" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "Bedieningsuitleg" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Logos" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Scores" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Tegen" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Hoesjes" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Mapinstellingen" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Huidige %1$s mappen" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Wijzig map" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Map toevoegen" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Map verwijderen" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "Wijzig %1$s map - Zoek: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "Voeg %1$s map toe - Zoek: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Druk op TAB voor keuze" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "Verwijder %1$s map" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " KLEUREN" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " PENNEN" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Configureer machine" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "Romset\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "Jaar\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "Fabrikant\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "Driver is variant van\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "Driver is hoofdsoftware\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "Analoge besturing\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "Toetensenbordinvoer\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "Status\tNIET WERKEND\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "Status\tOngeëmuleerde beveiliging\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "Status\tWerkend\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "Beeld\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "Beeld\tVerkeerde kleuren\n" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "Beeld\tOnvolledige kleuren\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "Beeld\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "Beeld\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "Geluid\tGeen\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "Geluid\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "Geluid\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "Geluid\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "Opname\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "Opname\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "Camera\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "Camera\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "Microfoon\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "Microfoon\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "Besturing\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "Besturing\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "Toetsenbord\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "Toetsenbord\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "Muis\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "Muis\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "Media\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "Media\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "Schijf\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "Schijf\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "Printer\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "Printer\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "Mag. Band\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "Mag. Band\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "Ponsband\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "Ponsband\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "Mag. trommel\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "Mag. trommel\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "(EP)ROM\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "(EP)ROM\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "Communicatie\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "Communicatie\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "LAN\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "LAN\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "WAN\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "WAN\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "Timing\tNiet geïmplementeerd\n" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "Timing\tOnvolledig\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "Mechanische machine\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "Mechanische machine\tNee\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "Vereist artwork\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "Vereist artwork\tNee\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "Vereist klikbare artwork\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "Vereist klikbare artwork\tNee\n" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "Ondersteunt cocktail\tNee\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "Driver is BIOS\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "Driver is BIOS\tNee\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "Ondersteunt opslaan\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "Ondersteunt opslaan\tNee\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "Schermoriëntatie\tVerticaal\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "Schermoriëntatie\tHorizontaal\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "Vereist CHD\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "Vereist CHD\tNee\n" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "ROM-controle Resultaat\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "ROM-controle Resultaat\tSLECHT\n" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "Samplecontrole Resultaat\tNiet Nodig\n" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "Samplecontrole Resultaat\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "Samplecontrole Resultaat\tSLECHT\n" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" @@ -2110,17 +2379,12 @@ msgstr "" "ROM-controle \tUitgeschakeld\n" "Samplecontrole \tUitgeschakeld\n" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d machines (waarvan %5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "Romset: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "Systeem: %1$-.100s" @@ -2134,22 +2398,22 @@ msgstr "Selectielijst - Zoeken: " msgid "Double click or press %1$s to select" msgstr "Dubbelklik of druk op %1$s om te selecteren" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "Controleer ROMs voor %1$u onbeschikbaar gemarkeerde machines?" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "Controleer ROMs voor alle %1$u machines?" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(resultaten worden opgeslagen naar %1$s)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" @@ -2158,7 +2422,7 @@ msgstr "" "ROMs controleren voor machine %2$u van %3$u...\n" "%1$s" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "Start controle" @@ -2178,212 +2442,247 @@ msgstr "Verberg info/plaatje" msgid "Hide Both" msgstr "Verberg beide" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Lettertypes" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Kleuren" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Taal" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Toon zijpanelen" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Instellingen gebruikersinterface" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "standaard" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Lettertype gebruikersinterface" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Vet" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Cursief" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Lijnen" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Tekstgrootte info's" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Instellingen lettertype gebruikersinterface" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "Voorbeeldtekst - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Normale tekst" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Geselecteerd kleur" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Normale tekst achtergrond" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Geselecteerde achtergrondkleur" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Subitemkleur" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Variant" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Rand" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Achtergrond" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "Dipswitch" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Onbeschikbaar kleur" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Sliderkleur" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Gfx-viewer achtergrond" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Muis-over kleur" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Muis-over achtergrondkleur" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Muis-down kleur" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Muis-down achtergrondkleur" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Herstel originele kleuren" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Kleurinstellingen gebruikersinterface" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "Dubbelklik of druk op %1$s om de kleurwaarde te wijzigen" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Menu voorvertoning" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Normaal" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Onderdeel" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Geselecteerd" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Muis-over" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "ARGB-instellingen" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Alpha" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Rood" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Groen" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Blauw" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Kies uit palet" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Kleur voorbeeld =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Wit" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Zilver" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Grijs" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Zwart" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Rood" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Oranje" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Geel" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Groen" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Blauw" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Violet" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2414,7 +2713,7 @@ msgstr "Analoge besturing" #: src/frontend/mame/ui/mainmenu.cpp:71 msgid "DIP Switches" -msgstr "" +msgstr "DIP-schakelaars" #: src/frontend/mame/ui/mainmenu.cpp:73 msgid "Machine Configuration" @@ -2490,137 +2789,215 @@ msgid "Select New Machine" msgstr "Selecteer nieuwe machine" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Bedieningspanelen" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Schermafbeeldingen" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "Kast" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "Bedieningspanel" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "Printplaat" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "Flyer" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Voorvertoning artwork" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Eindbazen" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "Logo" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Tegen" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Game over" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Bedieningsuitleg" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Scores" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Hoesjes" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Naar of uit favorietenlijst" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Exporteer getoonde lijst naar bestand" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "Laat DATs zien" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Softwareonderdeel selectie:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "BIOS-selectie:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "Software is een variant van: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "Software is hoofdsoftware" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Ondersteund: Nee" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Ondersteund: Gedeeltelijk" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Ondersteund: Ja" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "Driver is een variant van: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "Romset: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "Driver is hoofddriver" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "Driver is een variant van: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Afbeeldingen" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Informatie" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "Druk op een toets om door te gaan." -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Gebruik" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Algemene informatie" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Geluid" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Samplesnelheid" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Gebruik externe samples" @@ -2674,12 +3051,12 @@ msgstr " Scherm '%1$s': Vector\n" #: src/frontend/mame/ui/devopt.cpp:116 #, c-format msgid " Screen '%1$s': %2$d × %3$d (V) %4$s Hz\n" -msgstr "" +msgstr " Scherm '%1$s': %2$d × %3$d (V) %4$s Hz\n" #: src/frontend/mame/ui/devopt.cpp:117 #, c-format msgid " Screen '%1$s': %2$d × %3$d (H) %4$s Hz\n" -msgstr "" +msgstr " Scherm '%1$s': %2$d × %3$d (H) %4$s Hz\n" #: src/frontend/mame/ui/devopt.cpp:130 msgid "* Sound:\n" @@ -3230,7 +3607,7 @@ msgstr "MARPScore" msgid "Gameinit" msgstr "Spelinit" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Geschiedenis" @@ -3254,17 +3631,65 @@ msgstr "MESSinfo" msgid "MAMEinfo" msgstr "MAMEinfo" -#~ msgid "Backdrops" -#~ msgstr "Backdrops" +#~ msgid "Custom UI Settings" +#~ msgstr "Instellingen gebruikersinterface" + +#~ msgid "Software Usage" +#~ msgstr "Softwaregebruik" + +#~ msgid "Usage" +#~ msgstr "Gebruik" + +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "Gebruikersinterface" + +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Taal" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Samples" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Cheats" + +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "Titels" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "Eindes" + +#~ msgctxt "path-option" +#~ msgid "Artworks Preview" +#~ msgstr "Artworkvoorvertoning" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "Gameover" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "Titels" -#~ msgid "Overlays" -#~ msgstr "Overlays" +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Eindes" -#~ msgid "Bezels" -#~ msgstr "Bezels" +#~ msgctxt "selmenu-artwork" +#~ msgid "Marquees" +#~ msgstr "Marquees" -#~ msgid "CPanels" -#~ msgstr "BPanelen" +#~ msgid "Select" +#~ msgstr "Selecteer" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "romset: %1$-.100s" #~ msgid "View" #~ msgstr "Weergeven" @@ -3275,9 +3700,6 @@ msgstr "MAMEinfo" #~ msgid "Full" #~ msgstr "Volledig" -#~ msgid "Dip Switches" -#~ msgstr "DIP-schakelaars" - #~ msgid "Select position to load from" #~ msgstr "Selecteer positie om van te laden" @@ -3360,52 +3782,9 @@ msgstr "MAMEinfo" #~ msgid "Artwork Crop" #~ msgstr "Artwork bijsnijden" -#~ msgid "Use Backdrops" -#~ msgstr "Gebruik backdrops" - -#~ msgid "Use Overlays" -#~ msgstr "Gebruik overlays" - -#~ msgid "Use Bezels" -#~ msgstr "Gebruik bezels" - -#~ msgid "Use Control Panels" -#~ msgstr "Gebruik bedieningspanelen" - -#~ msgid "Use Marquees" -#~ msgstr "Gebruik marquees" - #~ msgid "Bilinear snapshot" #~ msgstr "Bilineaire momentopname" -#, c-format -#~ msgid " %1$d×%2$s %3$d.%4$06d MHz\n" -#~ msgstr " %1$d×%2$s %3$d.%4$06d MHz\n" - -#~ msgid " %1$d×%2$s %5$d.%6$03d kHz\n" -#~ msgstr " %1$d×%2$s %5$d.%6$03d kHz\n" - -#~ msgid " %2$s %3$d.%4$06d MHz\n" -#~ msgstr " %2$s %3$d.%4$06d MHz\n" - -#~ msgid " %2$s %5$d.%6$03d kHz\n" -#~ msgstr " %2$s %5$d.%6$03d kHz\n" - -#, c-format -#~ msgid " Screen '%1$s': %2$d × %3$d (V) %4$f Hz\n" -#~ msgstr " Scherm '%1$s': %2$d × %3$d (V) %4$f Hz\n" - -#, c-format -#~ msgid " Screen '%1$s': %2$d × %3$d (H) %4$f Hz\n" -#~ msgstr " Scherm '%1$s': %2$d × %3$d (H) %4$f Hz\n" - -#, c-format -#~ msgid " %1$d×%2$s\n" -#~ msgstr " %1$d×%2$s\n" - -#~ msgid " %2$s\n" -#~ msgstr " %2$s\n" - #~ msgid "" #~ "The software selected is missing one or more required ROM or CHD images. " #~ "Please select a different one." diff --git a/language/English/strings.po b/language/English/strings.po index f2adfda414e..62a997f7001 100644 --- a/language/English/strings.po +++ b/language/English/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -17,32 +17,32 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -51,233 +51,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -305,7 +305,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -314,7 +314,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -323,23 +323,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -359,7 +359,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -651,36 +651,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -718,86 +718,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -961,28 +982,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -990,11 +1011,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1035,7 +1056,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1052,291 +1073,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1348,23 +1542,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1387,7 +1599,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1399,27 +1611,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1492,7 +1704,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1506,7 +1718,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1517,52 +1729,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1586,482 +1798,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2075,29 +2339,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2117,211 +2381,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2428,137 +2727,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3146,7 +3523,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Estonian/strings.po b/language/Estonian/strings.po index cd76804ea60..07f8ae134ea 100644 --- a/language/Estonian/strings.po +++ b/language/Estonian/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -17,32 +17,32 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -51,233 +51,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -305,7 +305,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -314,7 +314,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -323,23 +323,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -359,7 +359,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -651,36 +651,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -718,86 +718,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -961,28 +982,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -990,11 +1011,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1035,7 +1056,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1052,291 +1073,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1348,23 +1542,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1387,7 +1599,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1399,27 +1611,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1492,7 +1704,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1506,7 +1718,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1517,52 +1729,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1586,482 +1798,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2075,29 +2339,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2117,211 +2381,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2428,137 +2727,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3146,7 +3523,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Finnish/strings.po b/language/Finnish/strings.po index b6f95cf5d54..87122ca3898 100644 --- a/language/Finnish/strings.po +++ b/language/Finnish/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -18,32 +18,32 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -52,233 +52,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -306,7 +306,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -315,7 +315,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -324,23 +324,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -360,7 +360,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -652,36 +652,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -719,86 +719,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -962,28 +983,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -991,11 +1012,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1036,7 +1057,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1053,291 +1074,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1349,23 +1543,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1388,7 +1600,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1400,27 +1612,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1493,7 +1705,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1507,7 +1719,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1518,52 +1730,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1587,482 +1799,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2076,29 +2340,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2118,211 +2382,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2429,137 +2728,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3147,7 +3524,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/French/strings.po b/language/French/strings.po index 5a3dd40a6e3..e2ea655c454 100644 --- a/language/French/strings.po +++ b/language/French/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-05-24 23:38+0200\n" "Last-Translator: Mevi <mevi.mame@gmail.com>\n" "Language-Team: MAME Language Team\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -27,27 +27,27 @@ msgstr "" "\n" "Appuyez sur une touche pour continuer" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" "Ce driver nécessite le chargement d'images dans le(s) périphérique(s) " "suivant(s) : " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -60,185 +60,185 @@ msgstr "" "Appuyez sur ''%1$s'' pour quitter,\n" "Appuyez sur ''%2$s'' pour retourner à l'émulation." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Volume principal" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "Volume %1$s" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "Overclock du processeur %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "Overclock %1$s son" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s - Taux de rafraîchissement" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s - Luminosité" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s - Contraste" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s - Gamma" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s - Stretch horizontal" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s - Position horizontale" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s - Stretch vertical" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s - Position verticale" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "'%1$s' Laserdisc - Stretch horizontal" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "'%1$s' Laserdisc - Position horizontale" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "'%1$s' Laserdisc - Stretch vertical" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "'%1$s' Laserdisc - Position verticale" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Scintillement de l'affichage vectoriel" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Largeur de rayon minimum" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Largeur de rayon maximum" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Intensité du rayon" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Viseur - Échelle %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Viseur - Offset %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Viseur - Échelle X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Viseur - Échelle Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Viseur - Offset X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Viseur - Offset Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**Erreur de sauvegarde du fichier ui.ini**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**Erreur de sauvegarde du fichier %s.ini**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -248,7 +248,7 @@ msgstr "" " Configuration sauvegardée \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -257,8 +257,8 @@ msgstr "" "%s\n" " ajouté à la liste des favoris." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -267,33 +267,33 @@ msgstr "" "%s\n" " supprimé de la liste des favoris." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d packages logiciels )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Liste de logiciels pour le driver : \"%1$s\" " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - Recherche : %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "Recherche : %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Options du son" @@ -321,7 +321,7 @@ msgstr "Personnaliser l'interface" msgid "Configure Directories" msgstr "Configurer les dossiers" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[emplacement vide]" @@ -330,7 +330,7 @@ msgstr "[emplacement vide]" msgid "[create]" msgstr "[créer]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[liste des logiciels]" @@ -339,23 +339,23 @@ msgstr "[liste des logiciels]" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Sélectionner le mode d'accès" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Lecture seule" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Lecture-écriture" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Lire cette image, écrire dans une autre image" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Lire cette image, écrire vers diff" @@ -375,7 +375,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Codes de triche" @@ -667,36 +667,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "Actif" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Inactif" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Auto" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Retour à la machine actuelle" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Quitter MAME" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Retour au menu précédent" @@ -734,86 +734,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "protection" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "minutage" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "graphismes" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "palette de couleur" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "son" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "caméra" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "microphone" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "contrôles" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "clavier" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "souris" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "disque" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "imprimante" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "LAN" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "WAN" @@ -1005,29 +1026,29 @@ msgstr "Partiellement supporté" msgid "[empty]" msgstr "[vide]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[gestionnaire de fichiers]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Permuter l'ordre des éléments" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" "Commande de tri effectuée : les entrées sont maintenant classées par %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "nom court" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "description" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[listes compatibles]" @@ -1035,11 +1056,11 @@ msgstr "[listes compatibles]" msgid "File Already Exists - Override?" msgstr "Ce fichier existe déjà - Écraser ?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "Non" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Oui" @@ -1080,7 +1101,7 @@ msgstr "Naturel" msgid "Emulated" msgstr "Émulé" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1097,189 +1118,358 @@ msgstr "Activé" msgid "Disabled" msgstr "Désactivé" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "Non filtré" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "Disponible" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "Indisponible" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "Fonctionnel" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "Non fonctionnel" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "Mécanique" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "Non mécanique" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "Catégorie" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "Favoris" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "BIOS" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "Pas BIOS" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "Parents" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "Clones" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "Manufactureur" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "Année" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "Sauvegarde supportée" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "Sauvegarde non supportée" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "CHD Requis" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "Pas de CHD requis" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "Écran vertical" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "Écran horizontal" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "Filtre personnalisé" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "Non filtré" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "Disponible" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "Indisponible" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "Favoris" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "Parents" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "Clones" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "Année" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "Éditeur" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "Supportée" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "Supportée partiellement" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "Non supportée" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "Région disponible" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "Sorte composante" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "Liste logiciel" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "Filtre personnalisé" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "<configurer filtres>" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Sélectionner les filtres personnalisés :" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "Filtre %1$u" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Supprimer le dernier filtre" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Ajouter un filtre" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "Sélectionne une catégorie" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "[pas de catégorie fichiers INI]" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "[pas de groupes dans fichier INI]" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "Pas de catégorie fichiers INI trouvé" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "Fichier" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "Pas de groupes trouvé dans la catétorie de fichier" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "Groupe" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "Inclure clones" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Utilisation du logiciel" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Révision : " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Réinitialiser" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1288,7 +1478,7 @@ msgstr "" "Temps écoulé : %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1297,7 +1487,7 @@ msgstr "" "Temps écoulé : %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1306,90 +1496,94 @@ msgstr "" "Tickets distribués : %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Monnayeur %1$c : ND%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Monnayeur %1$c : %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (verrouillé)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Attente visible" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml sauvegardé dans le dossier ui." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Nom : Description :\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt sauvegardé dans le dossier ui." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Exporter la liste au format XML (comme -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" "Exporter la liste au format XML (comme -listxml, mais en excluant les " "périphériques)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Exporter la liste au format TXT (comme -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Driver" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "Cette machine na pas de BIOS" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Ajouter aux favoris" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Supprimer des favoris" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (par défaut)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Modules d'extension" @@ -1401,23 +1595,41 @@ msgstr "Pseudo terminals" msgid "[failed]" msgstr "[échoué]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "État de chargement" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "État de sauvegarde" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1440,7 +1652,7 @@ msgid "Other Controls" msgstr "Autres contrôles" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1452,27 +1664,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1555,7 +1767,7 @@ msgstr "" "sur la configuration de %2$s." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Configurer les options" @@ -1569,7 +1781,7 @@ msgid "Type name or select: (random)" msgstr "Entrez un nom ou sélectionnez : (au hasard)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1580,52 +1792,52 @@ msgid "Driver: %1$-.100s" msgstr "Driver : %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "En résumé : NE FONCTIONNE PAS" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "En résumé : Protection non émulée" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "En résumé : Fonctionne correctement" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "Graphismes : Non implémenté" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Graphismes : Imparfaits, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Graphismes : OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "Son : Aucun" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Son : Non implémenté" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Son : Imparfait" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Son : OK" @@ -1651,482 +1863,534 @@ msgid "Reload All" msgstr "Tout recharger" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROMs" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "Média logiciel" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "Interface utilisateur" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Langue" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "Illustrations" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Samples / Échantillons sonores" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Viseurs" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "Fichiers DATs" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "Fichiers INIs" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "Fichiers DATs" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "Catégories INIs" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Captures d'écran" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Icônes" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Captures d'écran" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Panneaux de contrôle" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Bornes" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Flyers / Prospectus" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Écrans-titre" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Fins de jeu" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "Circuits imprimés" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "Marquees" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Panneaux de contrôle" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Viseurs" +msgctxt "path-option" +msgid "PCBs" +msgstr "Circuits imprimés" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Illustrations" +msgctxt "path-option" +msgid "Flyers" +msgstr "Flyers / Prospectus" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "Écrans-titre" + +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Boss / Ennemis et adversaires" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" -msgstr "Aperçu des illustrations" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" msgstr "Écrans de sélection" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "Écrans GAME OVER" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "Comment faire" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Logos" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Scores" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Versus" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Boîtiers et emballages" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Configuration des dossiers" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Dossier(s) actuel(s) pour %1$s" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Changer le dossier" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Ajouter un dossier" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Supprimer le dossier" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "Changer le dossier %1$s - Recherche : %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "Ajouter un dossier %1$s - Recherche : %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Appuyez sur TAB pour définir" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "Supprimer le dossier %1$s" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " COULEURS" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " MARQUEURS" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Configurer la machine" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "Romset\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "Année\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "Fabricant\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "Driver est le Clone de\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "Driver est le parent\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "Contrôles analogique\tOui\n" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "Entrées clavier\tOui\n" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "Globalement\tNON FONCTIONNEL\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "Globalement\tProtection non émulée\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "Globalement\tFonctionnel\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "Graphismes\tNon implanté\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "Graphismes\tCouleurs Incorrectes\n" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "Graphismes\tCouleurs Imparfaites\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "Graphismes\tImparfaites\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "Graphismes\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "Son\tAucun\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "Son\tNon implanté\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "Son\tImparfait\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "Son\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "Caméra\tNon implanté\n" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "Caméra\tImparfait\n" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "Microphone\tNon implanté\n" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "Microphone\tImparfait\n" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "Contrôles\tNon implanté\n" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "Contrôles\tImparfait\n" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "Clavier\tNon implanté\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "Clavier\tImparfait\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "Souris\tNon implanté\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "Souris\tImparfait\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "Disque\tNon implanté\n" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "Disque\tImparfait\n" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "Imprimante\tNon implanté\n" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "Imprimante\tImparfait\n" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "LAN\tNon implanté\n" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "LAN\tImparfait\n" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "WAN\tNon implanté\n" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "WAN\tImparfait\n" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "Minutage\tNon implanté\n" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "Minutage\tImparfait\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "Machine mécanique\tOui\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "Machine mécanique\tNon\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "Illustrations requis\tOui\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "Illustrations requis\tNon\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "Illustrations cliquable requis\tOui\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "Illustrations cliquable requis\tNon\n" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "Driver est BIOS\tOui\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "Driver est BIOS\tNon\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "Supporte sauvegarde\tOui\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "Supporte sauvegarde\tNon\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" -msgstr "" +msgstr "Orientation de l'écran\tVerticale\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" -msgstr "" +msgstr "Orientation de l'écran\tHorizontale\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "CHD requis\tOui\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "CHD requis\tNon\n" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "Romset : %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "Système : %1$-.100s" @@ -2140,22 +2404,22 @@ msgstr "Liste de sélection - Recherche : " msgid "Double click or press %1$s to select" msgstr "Double-cliquez ou appuyez sur %1$s pour sélectionner" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "Audit ROMs pour %1$u machines marqué non disponible ?" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "Audit ROMs pour toutes les machines %1$u ?" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(Les résultats va être sauvegarder à %1$s)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" @@ -2164,7 +2428,7 @@ msgstr "" "Auditing ROMs pour machine %2$u de %3$u...\n" "%1$s" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "Démarre Audit" @@ -2184,213 +2448,248 @@ msgstr "Cacher Images/Infos" msgid "Hide Both" msgstr "Cacher les deux" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Polices" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Couleurs" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Langue" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Afficher les panneaux latéraux" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Paramètres personnalisés de l'interface" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "par défaut" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Police de l'interface" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Gras" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Italique" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Lignes" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Taille du texte des infos" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Paramètres des polices de l'interface" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "Exemple de texte - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Texte normal" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Couleur sélectionnée" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Arrière-plan du texte normal" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Couleur de fond sélectionnée" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Couleur du sous-élément" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Clone" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Bordure" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Arrière-plan" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "DIP Switch" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Couleur non disponible" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Couleur du curseur" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Arrière-plan du visualiseur GFX" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Couleur lors du passage de la souris" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Couleur de fond lors du passage de la souris" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Couleur lorsque le bouton de la souris est enfoncé" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Couleur de fond lorsque le bouton de la souris est enfoncé" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Restaurer les couleurs d'origine" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Paramètres des couleurs de l'interface" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" "Double-cliquez ou appuyez sur %1$s pour changer la valeur de la couleur" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Aperçu du menu" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Normal" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Sous-élément" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Sélectionnée" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Passage de la souris" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "Paramètres ARVB" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Alpha" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Rouge" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Vert" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Bleu" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Choisir parmi la palette" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Aperçu de la couleur =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Blanc" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Argent" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Gris" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Noir" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Rouge" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Orange" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Jaune" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Vert" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Bleu" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Violet" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2421,7 +2720,7 @@ msgstr "Contrôles analogiques" #: src/frontend/mame/ui/mainmenu.cpp:71 msgid "DIP Switches" -msgstr "" +msgstr "DIP Switch" #: src/frontend/mame/ui/mainmenu.cpp:73 msgid "Machine Configuration" @@ -2497,137 +2796,215 @@ msgid "Select New Machine" msgstr "Sélectionner une nouvelle machine" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Panneaux de contrôle" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Captures d'écran" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "Circuit imprimé" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "Flyer / Prospectus" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "Écran-titre" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Aperçu de l'illustration" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Boss / Ennemis et adversaires" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "Logo" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Versus" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Game Over" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Comment faire" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Scores" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "Écrans de sélection" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Boîtiers et emballages" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Ajouter ou supprimer des favoris" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Exporter la liste affichée vers un fichier" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "Afficher vue des fichiers DATs" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Sélection du logiciel :" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "Sélection BIOS :" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "Ce logiciel est un clone de : %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "Ce logiciel est le parent" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Supporté : Non" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Supporté : Partiellement" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Supporté : Oui" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "romset : %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "Ce driver est un clone de : %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "Romset : %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "Ce driver est le parent" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "Ce driver est un clone de : %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Images" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Infos" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "Appuyez sur une touche pour continuer" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Utilisation" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Informations générales" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Son" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Fréquence d'échantillonnage" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Utiliser des samples externes" @@ -3215,7 +3592,7 @@ msgstr "MARPScore" msgid "Gameinit" msgstr "Aperçu gameinit.dat" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Aperçu history.dat" @@ -3239,18 +3616,63 @@ msgstr "MESSinfo" msgid "MAMEinfo" msgstr "MAMEinfo" -#~ msgid "Backdrops" -#~ msgstr "Fonds" +#~ msgid "Custom UI Settings" +#~ msgstr "Paramètres personnalisés de l'interface" -#~ msgid "Overlays" -#~ msgstr "Calques" +#~ msgid "Software Usage" +#~ msgstr "Utilisation du logiciel" -#~ msgid "Bezels" -#~ msgstr "Cadres" +#~ msgid "Usage" +#~ msgstr "Utilisation" -#~ msgid "CPanels" +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "Interface utilisateur" + +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Langue" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Samples / Échantillons sonores" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Codes de triche" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "Fins de jeu" + +#~ msgctxt "path-option" +#~ msgid "Artworks Preview" +#~ msgstr "Aperçu des illustrations" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "Écrans GAME OVER" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Cabinets" +#~ msgstr "Bornes" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Control Panels" #~ msgstr "Panneaux de contrôle" +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Fins de jeu" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Marquees" +#~ msgstr "Marquees" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "romset : %1$-.100s" + #~ msgid "View" #~ msgstr "Vue" @@ -3260,9 +3682,6 @@ msgstr "MAMEinfo" #~ msgid "Full" #~ msgstr "Complète" -#~ msgid "Dip Switches" -#~ msgstr "DIP Switch" - #~ msgid "Select position to load from" #~ msgstr "Charger depuis la position" @@ -3351,127 +3770,21 @@ msgstr "MAMEinfo" #~ msgid "Default name is " #~ msgstr "Nom par défaut est " -#~ msgid "Vertical" -#~ msgstr "Verticale" - -#~ msgid "Horizontal" -#~ msgstr "Horizontale" - -#~ msgid "Unimplemented" -#~ msgstr "Non implémenté" - -#~ msgid "Imperfect" -#~ msgstr "Imparfait" - -#~ msgid "Gfx: %s, Sound: %s" -#~ msgstr "GFX : %s, Son : %s" - #~ msgid "Audit in progress..." #~ msgstr "Vérification en cours ..." #~ msgid "Extra INIs" #~ msgstr "Fichiers INI supplémentaires" -#~ msgid " ^!File" -#~ msgstr " ^!Fichier" - -#~ msgid " ^!Category" -#~ msgstr " ^!Catégorie" - #~ msgid "%1$s Search: %2$s_" #~ msgstr "%1$s Recherche : %2$s_" -#~ msgid "Main filter" -#~ msgstr "Filtre principal" - -#~ msgid "Other filter" -#~ msgstr "Autre filtre" - -#~ msgid "^!Manufacturer" -#~ msgstr "^!Constructeur" - -#~ msgid "^!Year" -#~ msgstr "^!Année" - -#~ msgid "^!Publisher" -#~ msgstr "^!Éditeur" - -#~ msgid "^!Software List" -#~ msgstr "^!Liste de logiciels" - -#~ msgid "^!Device type" -#~ msgstr "^!Type de périphérique" - -#~ msgid "^!Region" -#~ msgstr "^!Région" - -#~ msgid "^!Setup custom filter" -#~ msgstr "^!Définir un filtre personnalisé" - -#~ msgid "Region: %1$s -" -#~ msgstr "Région : %1$s -" - -#~ msgid "Publisher: %1$s -" -#~ msgstr "Éditeur : %1$s -" - -#~ msgid "Year: %1$s -" -#~ msgstr "Année : %1$s -" - -#~ msgid "Software List: %1$s -" -#~ msgstr "Liste de logiciels : %1$s -" - -#~ msgid "Device type: %1$s -" -#~ msgstr "Type de périphérique : %1$s -" - #~ msgid "%s Search: %s_" #~ msgstr "%s Recherche : %s_" -#~ msgid "Bios selection:" -#~ msgstr "Sélection du BIOS :" - -#~ msgid "Bios" -#~ msgstr "BIOS" - -#~ msgid "Bios Selection" -#~ msgstr "Sélection du BIOS" - -#~ msgid " - ARGB Settings" -#~ msgstr " - Paramètres ARVB" - #~ msgid "Software History" #~ msgstr "Historique du logiciel" -#~ msgid "Mameinfo" -#~ msgstr "Aperçu mameinfo.dat" - -#~ msgid "Messinfo" -#~ msgstr "Aperçu messinfo.dat" - -#~ msgid "The keyboard emulation may not be 100% accurate.\n" -#~ msgstr "L'émulation du clavier peut ne pas être fidèle à 100%.\n" - -#~ msgid "The colors aren't 100% accurate.\n" -#~ msgstr "Les couleurs ne sont pas fidèles à 100%.\n" - -#~ msgid "The colors are completely wrong.\n" -#~ msgstr "Les couleurs sont complètement fausses.\n" - -#~ msgid "The video emulation isn't 100% accurate.\n" -#~ msgstr "L'émulation vidéo n'est pas fidèle à 100%.\n" - -#~ msgid "The sound emulation isn't 100% accurate.\n" -#~ msgstr "L'émulation du son n'est pas fidèle à 100%.\n" - -#~ msgid "The machine lacks sound.\n" -#~ msgstr "La machine n'a pas de son.\n" - -#~ msgid "The machine requires external artwork files\n" -#~ msgstr "La machine nécessite l'utilisation de fichiers artwork externes\n" - -#~ msgid "The machine has protection which isn't fully emulated.\n" -#~ msgstr "" -#~ "La machine possède une protection qui n'est pas complètement émulée.\n" - #~ msgid "" #~ "\n" #~ "Certain elements of this machine cannot be emulated as it requires actual " @@ -3484,15 +3797,6 @@ msgstr "MAMEinfo" #~ "mécaniques. Il n'est donc pas possible d'y jouer complètement.\n" #~ msgid "" -#~ "\n" -#~ "\n" -#~ "There are working clones of this machine: " -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Il existe des clones de cette machine qui fonctionnent correctement : " - -#~ msgid "" #~ "The selected machine is missing one or more required ROM or CHD images. " #~ "Please select a different machine.\n" #~ "\n" @@ -3503,75 +3807,6 @@ msgstr "MAMEinfo" #~ "\n" #~ "Appuyez sur une touche pour continuer." -#~ msgid "Romset: %1$-.100s\n" -#~ msgstr "Romset : %1$-.100s\n" - -#~ msgid "Year: %1$s\n" -#~ msgstr "Année : %1$s\n" - -#~ msgid "Manufacturer: %1$-.100s\n" -#~ msgstr "Constructeur : %1$-.100s\n" - -#~ msgid "Driver is Clone of: %1$-.100s\n" -#~ msgstr "Ce driver est un clone de : %1$-.100s\n" - -#~ msgid "Driver is Parent\n" -#~ msgstr "Ce driver est le parent\n" - -#~ msgid "Overall: NOT WORKING\n" -#~ msgstr "En résumé : NE FONCTIONNE PAS\n" - -#~ msgid "Overall: Unemulated Protection\n" -#~ msgstr "En résumé : Protection non émulée\n" - -#~ msgid "Overall: Working\n" -#~ msgstr "En résumé : Fonctionne correctement\n" - -#~ msgid "Graphics: Imperfect Colors\n" -#~ msgstr "Graphismes : Couleurs imparfaites\n" - -#~ msgid "Graphics: Imperfect\n" -#~ msgstr "Graphismes : Imparfaits\n" - -#~ msgid "Graphics: OK\n" -#~ msgstr "Graphismes : OK\n" - -#~ msgid "Sound: Unimplemented\n" -#~ msgstr "Son : Non implémenté\n" - -#~ msgid "Sound: Imperfect\n" -#~ msgstr "Son : Imparfait\n" - -#~ msgid "Sound: OK\n" -#~ msgstr "Son : OK\n" - -#~ msgid "Driver is Skeleton: %1$s\n" -#~ msgstr "Ce driver est embryonnaire : %1$s\n" - -#~ msgid "Game is Mechanical: %1$s\n" -#~ msgstr "Jeu comportant des éléments mécaniques : %1$s\n" - -#~ msgid "Requires Artwork: %1$s\n" -#~ msgstr "Artwork nécessaire : %1$s\n" - -#~ msgid "Requires Clickable Artwork: %1$s\n" -#~ msgstr "Artwork cliquable nécessaire : %1$s\n" - -#~ msgid "Support Cocktail: %1$s\n" -#~ msgstr "Support du mode cocktail : %1$s\n" - -#~ msgid "Driver is Bios: %1$s\n" -#~ msgstr "Ce driver est un BIOS : %1$s\n" - -#~ msgid "Support Save: %1$s\n" -#~ msgstr "Supporte les sauvegardes : %1$s\n" - -#~ msgid "Screen Orientation: %1$s\n" -#~ msgstr "Orientation de l'écran : %1$s\n" - -#~ msgid "Requires CHD: %1$s\n" -#~ msgstr "CHD nécessaire : %1$s\n" - #~ msgid "Roms Audit Pass: OK\n" #~ msgstr "Vérification des ROMs : OK\n" @@ -3608,9 +3843,6 @@ msgstr "MAMEinfo" #~ "\n" #~ "Appuyez sur une touche pour continuer." -#~ msgid " [internal]" -#~ msgstr " [interne]" - #~ msgid "Save cancelled" #~ msgstr "Sauvegarde annulée" diff --git a/language/French_Belgium/strings.po b/language/French_Belgium/strings.po index 03b5acbba4a..14a3b7e7741 100644 --- a/language/French_Belgium/strings.po +++ b/language/French_Belgium/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-05-24 23:42+0200\n" "Last-Translator: Mevi <mevi.mame@gmail.com>\n" "Language-Team: MAME Language Team\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -27,27 +27,27 @@ msgstr "" "\n" "Appuyez sur une touche pour continuer" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" "Ce driver nécessite le chargement d'images dans le(s) périphérique(s) " "suivant(s) : " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -60,185 +60,185 @@ msgstr "" "Appuyez sur ''%1$s'' pour quitter,\n" "Appuyez sur ''%2$s'' pour retourner à l'émulation." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Volume principal" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "Volume %1$s" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "Overclock du processeur %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s - Taux de rafraîchissement" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s - Luminosité" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s - Contraste" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s - Gamma" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s - Stretch horizontal" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s - Position horizontale" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s - Stretch vertical" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s - Position verticale" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "'%1$s' Laserdisc - Stretch horizontal" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "'%1$s' Laserdisc - Position horizontale" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "'%1$s' Laserdisc - Stretch vertical" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "'%1$s' Laserdisc - Position verticale" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Scintillement de l'affichage vectoriel" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Largeur de rayon minimum" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Largeur de rayon maximum" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Intensité du rayon" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Viseur - Échelle %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Viseur - Offset %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Viseur - Échelle X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Viseur - Échelle Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Viseur - Offset X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Viseur - Offset Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**Erreur de sauvegarde du fichier ui.ini**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**Erreur de sauvegarde du fichier %s.ini**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -248,7 +248,7 @@ msgstr "" " Configuration sauvegardée \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -257,8 +257,8 @@ msgstr "" "%s\n" " ajouté à la liste des favoris." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -267,33 +267,33 @@ msgstr "" "%s\n" " supprimé de la liste des favoris." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d packages logiciels )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Liste de logiciels pour le driver : \"%1$s\" " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Options du son" @@ -321,7 +321,7 @@ msgstr "Personnaliser l'interface" msgid "Configure Directories" msgstr "Configurer les dossiers" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[emplacement vide]" @@ -330,7 +330,7 @@ msgstr "[emplacement vide]" msgid "[create]" msgstr "[créer]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[liste des logiciels]" @@ -339,23 +339,23 @@ msgstr "[liste des logiciels]" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Sélectionner le mode d'accès" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Lecture seule" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Lecture-écriture" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Lire cette image, écrire dans une autre image" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Lire cette image, écrire vers diff" @@ -375,7 +375,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -667,36 +667,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "Actif" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Inactif" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Retour à la machine actuelle" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Quitter MAME" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Retour au menu précédent" @@ -734,86 +734,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -912,6 +933,9 @@ msgid "" "\n" "There are working clones of this machine: %s" msgstr "" +"\n" +"\n" +"Il existe des clones de cette machine qui fonctionnent correctement : %s" #: src/frontend/mame/ui/info.cpp:339 #, c-format @@ -1002,29 +1026,29 @@ msgstr "Partiellement supporté" msgid "[empty]" msgstr "[vide]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[gestionnaire de fichiers]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Permuter l'ordre des éléments" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" "Commande de tri effectuée : les entrées sont maintenant classées par %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "nom court" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[listes compatibles]" @@ -1032,11 +1056,11 @@ msgstr "[listes compatibles]" msgid "File Already Exists - Override?" msgstr "Ce fichier existe déjà - Écraser ?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "Non" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Oui" @@ -1077,7 +1101,7 @@ msgstr "Naturel" msgid "Emulated" msgstr "Émulé" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1094,189 +1118,358 @@ msgstr "Activé" msgid "Disabled" msgstr "Désactivé" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" -msgstr "" +msgstr "Catégorie" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" -msgstr "" +msgstr "Constructeur" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" -msgstr "" +msgstr "Année" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" +msgstr "Filtre personnalisé" + +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "Année" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" +msgstr "Éditeur" + +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" -msgstr "" +msgstr "Type de périphérique" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" -msgstr "" +msgstr "Liste de logiciels" + +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "Filtre personnalisé" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Sélectionner les filtres personnalisés :" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Supprimer le dernier filtre" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Ajouter un filtre" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" -msgstr "" +msgstr "Fichier" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Utilisation du logiciel" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Révision : " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Réinitialiser" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1285,7 +1478,7 @@ msgstr "" "Temps écoulé : %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1294,7 +1487,7 @@ msgstr "" "Temps écoulé : %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1303,90 +1496,94 @@ msgstr "" "Tickets distribués : %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Monnayeur %1$c : ND%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Monnayeur %1$c : %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (verrouillé)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Attente visible" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml sauvegardé dans le dossier ui." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Nom : Description :\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt sauvegardé dans le dossier ui." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Exporter la liste au format XML (comme -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" "Exporter la liste au format XML (comme -listxml, mais en excluant les " "périphériques)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Exporter la liste au format TXT (comme -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Ajouter aux favoris" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Supprimer des favoris" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (par défaut)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Plugins / Modules d'extension" @@ -1398,30 +1595,48 @@ msgstr "" msgid "[failed]" msgstr "[échoué]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" #: src/frontend/mame/ui/slotopt.cpp:192 #, c-format msgid "%s [internal]" -msgstr "" +msgstr "%s [interne]" #: src/frontend/mame/ui/inputmap.cpp:38 msgid "User Interface" @@ -1437,7 +1652,7 @@ msgid "Other Controls" msgstr "Autres contrôles" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1449,27 +1664,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1548,7 +1763,7 @@ msgstr "" "sur la configuration de %2$s." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Configurer les options" @@ -1562,7 +1777,7 @@ msgid "Type name or select: (random)" msgstr "Entrez un nom ou sélectionnez : (au hasard)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1573,52 +1788,52 @@ msgid "Driver: %1$-.100s" msgstr "Driver : %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "En résumé : NE FONCTIONNE PAS" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "En résumé : Protection non émulée" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "En résumé : Fonctionne correctement" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Graphismes : Imparfaits, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Graphismes : OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Son : Non implémenté" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Son : Imparfait" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Son : OK" @@ -1644,482 +1859,534 @@ msgid "Reload All" msgstr "Tout recharger" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "UI / Interface utilisateur" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Langue" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Samples / Échantillons sonores" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Crosshairs / Viseurs" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "Fichiers DAT" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "Fichiers INI" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "Fichiers DAT" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Snapshots / Captures d'écran" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Icônes" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Snapshots / Captures d'écran" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Control Panels / Panneaux de contrôle" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Cabinets / Bornes" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Flyers / Prospectus" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Titles / Écrans-titre" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Ends / Fins de jeu" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "PCBs / Circuits imprimés" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Control Panels / Panneaux de contrôle" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Crosshairs / Viseurs" +msgctxt "path-option" +msgid "PCBs" +msgstr "PCBs / Circuits imprimés" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Artworks / Illustrations" +msgctxt "path-option" +msgid "Flyers" +msgstr "Flyers / Prospectus" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "Title Screens / Écrans-titre" + +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Bosses / Ennemis et adversaires" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" -msgstr "Artworks Preview / Aperçu des illustrations" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" msgstr "Select / Écrans de sélection" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "GameOver / Écrans GAME OVER)" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "HowTo / Comment faire" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Covers / Boîtiers et emballages" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Configuration des dossiers" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Dossier(s) actuel(s) pour %1$s" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Changer le dossier" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Ajouter un dossier" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Supprimer le dossier" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "Changer le dossier %1$s - Recherche: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "Ajouter un dossier %1$s - Recherche: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Appuyez sur TAB pour définir" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "Supprimer le dossier %1$s" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " COULEURS" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " MARQUEURS" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Configurer la machine" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" -msgstr "" +msgstr "Romset\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" -msgstr "" +msgstr "Année\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" -msgstr "" +msgstr "Constructeur\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" -msgstr "" +msgstr "Ce driver est un clone de\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" -msgstr "" +msgstr "Ce driver est le parent\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" -msgstr "" +msgstr "En résumé\tNE FONCTIONNE PAS\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" -msgstr "" +msgstr "En résumé\tProtection non émulée\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" -msgstr "" +msgstr "En résumé\tFonctionne correctement\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" -msgstr "" +msgstr "Graphismes\tCouleurs imparfaites\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" -msgstr "" +msgstr "Graphismes\tImparfaits\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" -msgstr "" +msgstr "Graphismes\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" -msgstr "" +msgstr "Son\tNon implémenté\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" -msgstr "" +msgstr "Son\tImparfait\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" -msgstr "" +msgstr "Son\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" -msgstr "" +msgstr "Orientation de l'écran\tVerticale\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" -msgstr "" +msgstr "Orientation de l'écran\tHorizontale\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "Romset : %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "Système : %1$-.100s" @@ -2133,29 +2400,29 @@ msgstr "Liste de sélection - Recherche : " msgid "Double click or press %1$s to select" msgstr "Double-cliquez ou appuyez sur %1$s pour sélectionner" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2175,213 +2442,248 @@ msgstr "Cacher Images/Infos" msgid "Hide Both" msgstr "Cacher les deux" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Polices" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Couleurs" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Langue" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Afficher les panneaux latéraux" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Paramètres personnalisés de l'interface" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "par défaut" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Police de l'interface" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Gras" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Italique" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Lignes" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Taille du texte des infos" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Paramètres des polices de l'interface" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "Exemple de texte - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Texte normal" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Couleur sélectionnée" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Arrière-plan du texte normal" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Couleur de fond sélectionnée" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Couleur du sous-élément" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Clone" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Bordure" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Arrière-plan" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "DIP Switch" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Couleur non disponible" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Couleur du curseur" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Arrière-plan du visualiseur GFX" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Couleur lors du passage de la souris" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Couleur de fond lors du passage de la souris" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Couleur lorsque le bouton de la souris est enfoncé" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Couleur de fond lorsque le bouton de la souris est enfoncé" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Restaurer les couleurs d'origine" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Paramètres des couleurs de l'interface" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" "Double-cliquez ou appuyez sur %1$s pour changer la valeur de la couleur" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Aperçu du menu" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Sous-élément" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Sélectionné" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Passage de la souris" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" -msgstr "" +msgstr "Paramètres ARVB" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Rouge" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Vert" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Bleu" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Choisir parmi la palette" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Aperçu de la couleur =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Blanc" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Argent" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Gris" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Noir" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Rouge" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Jaune" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Vert" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Bleu" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2412,7 +2714,7 @@ msgstr "Contrôles analogiques" #: src/frontend/mame/ui/mainmenu.cpp:71 msgid "DIP Switches" -msgstr "" +msgstr "DIP Switch" #: src/frontend/mame/ui/mainmenu.cpp:73 msgid "Machine Configuration" @@ -2444,7 +2746,7 @@ msgstr "Contrôle de la cassette" #: src/frontend/mame/ui/mainmenu.cpp:101 msgid "BIOS Selection" -msgstr "" +msgstr "Sélection du BIOS" #: src/frontend/mame/ui/mainmenu.cpp:104 msgid "Slot Devices" @@ -2488,137 +2790,215 @@ msgid "Select New Machine" msgstr "Sélectionner une nouvelle machine" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Control Panels / Commandes" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Captures d'écran" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "Circuit imprimé" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "Flyer / Prospectus" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "Écran-titre" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Aperçu de l'artwork" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Ennemis et adversaires" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" +msgstr "Écrans GAME OVER" + +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Comment faire" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Boîtiers et emballages" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Ajouter ou supprimer des favoris" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Exporter la liste affichée vers un fichier" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "Afficher vue des fichiers DATs" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Sélection du logiciel :" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "Ce logiciel est un clone de : %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "Ce logiciel est le parent" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Supporté : Non" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Supporté : Partiellement" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Supporté : Oui" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "romset : %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "Ce driver est un clone de : %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "Romset : %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "Ce driver est le parent" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "Ce driver est un clone de : %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Utilisation" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Informations générales" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Son" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Fréquence d'échantillonnage" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Utiliser des samples externes" @@ -3206,7 +3586,7 @@ msgstr "" msgid "Gameinit" msgstr "Aperçu gameinit.dat" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Aperçu history.dat" @@ -3220,23 +3600,60 @@ msgstr "" #: plugins/data/data_messinfo.lua:21 msgid "MESSinfo" -msgstr "" +msgstr "Aperçu messinfo.dat" #: plugins/data/data_mameinfo.lua:20 msgid "MAMEinfo" -msgstr "" +msgstr "Aperçu mameinfo.dat" -#~ msgid "Backdrops" -#~ msgstr "Backdrops / Fonds" +#~ msgid "Custom UI Settings" +#~ msgstr "Paramètres personnalisés de l'interface" -#~ msgid "Overlays" -#~ msgstr "Overlays / Calques" +#~ msgid "Software Usage" +#~ msgstr "Utilisation du logiciel" -#~ msgid "Bezels" -#~ msgstr "Bezels / Cadres" +#~ msgid "Usage" +#~ msgstr "Utilisation" -#~ msgid "CPanels" -#~ msgstr "CPanels / Commandes" +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "UI / Interface utilisateur" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Samples / Échantillons sonores" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "Ends / Fins de jeu" + +#~ msgctxt "path-option" +#~ msgid "Artworks" +#~ msgstr "Artworks / Illustrations" + +#~ msgctxt "path-option" +#~ msgid "Artworks Preview" +#~ msgstr "Artworks Preview / Aperçu des illustrations" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "GameOver / Écrans GAME OVER" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Cabinets" +#~ msgstr "Bornes" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Control Panels" +#~ msgstr "Control Panels / Commandes" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Fins de jeu" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "romset : %1$-.100s" #~ msgid "View" #~ msgstr "Vue" @@ -3247,9 +3664,6 @@ msgstr "" #~ msgid "Full" #~ msgstr "Complète" -#~ msgid "Dip Switches" -#~ msgstr "DIP Switch" - #~ msgid "Select position to load from" #~ msgstr "Charger depuis la position" @@ -3305,33 +3719,12 @@ msgstr "" #~ "Il manque un ou plusieurs fichiers de ROMs ou d'images CHD pour utiliser " #~ "ce logiciel. Veuillez en sélectionner un autre." -#~ msgid "Vertical" -#~ msgstr "Verticale" - -#~ msgid "Horizontal" -#~ msgstr "Horizontale" - -#~ msgid "Unimplemented" -#~ msgstr "Non implémenté" - -#~ msgid "Imperfect" -#~ msgstr "Imparfait" - -#~ msgid "Gfx: %s, Sound: %s" -#~ msgstr "GFX : %s, Son : %s" - #~ msgid "Audit in progress..." #~ msgstr "Vérification en cours..." #~ msgid "Extra INIs" #~ msgstr "Fichiers INI supplémentaires" -#~ msgid " ^!File" -#~ msgstr "^!Fichier" - -#~ msgid " ^!Category" -#~ msgstr "^!Catégorie" - #~ msgid "%1$s Search: %2$s_" #~ msgstr "%1$s Recherche : %2$s_" @@ -3341,21 +3734,6 @@ msgstr "" #~ msgid "Other filter" #~ msgstr "Autre filtre" -#~ msgid "^!Manufacturer" -#~ msgstr "^!Constructeur" - -#~ msgid "^!Year" -#~ msgstr "^!Année" - -#~ msgid "^!Publisher" -#~ msgstr "^!Éditeur" - -#~ msgid "^!Software List" -#~ msgstr "^!Liste de logiciels" - -#~ msgid "^!Device type" -#~ msgstr "^!Type de périphérique" - #~ msgid "^!Region" #~ msgstr "^!Région" @@ -3365,42 +3743,15 @@ msgstr "" #~ msgid "Region: %1$s -" #~ msgstr "Région : %1$s -" -#~ msgid "Publisher: %1$s -" -#~ msgstr "Éditeur : %1$s -" - -#~ msgid "Year: %1$s -" -#~ msgstr "Année : %1$s -" - #~ msgid "Software List: %1$s -" #~ msgstr "Liste de logiciels : %1$s -" -#~ msgid "Device type: %1$s -" -#~ msgstr "Type de périphérique : %1$s -" - #~ msgid "%s Search: %s_" #~ msgstr "%s Recherche : %s_" -#~ msgid "Bios selection:" -#~ msgstr "Sélection du BIOS :" - -#~ msgid "Bios" -#~ msgstr "BIOS" - -#~ msgid "Bios Selection" -#~ msgstr "Sélection du BIOS" - -#~ msgid " - ARGB Settings" -#~ msgstr " - Paramètres ARVB" - #~ msgid "Software History" #~ msgstr "Historique du logiciel" -#~ msgid "Mameinfo" -#~ msgstr "Aperçu mameinfo.dat" - -#~ msgid "Messinfo" -#~ msgstr "Aperçu messinfo.dat" - #~ msgid "The keyboard emulation may not be 100% accurate.\n" #~ msgstr "L'émulation du clavier peut ne pas être fidèle à 100%.\n" @@ -3438,15 +3789,6 @@ msgstr "" #~ "mécaniques. Il n'est donc pas possible d'y jouer complètement.\n" #~ msgid "" -#~ "\n" -#~ "\n" -#~ "There are working clones of this machine: " -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Il existe des clones de cette machine qui fonctionnent correctement : " - -#~ msgid "" #~ "The selected machine is missing one or more required ROM or CHD images. " #~ "Please select a different machine.\n" #~ "\n" @@ -3457,51 +3799,6 @@ msgstr "" #~ "\n" #~ "Appuyez sur une touche pour continuer." -#~ msgid "Romset: %1$-.100s\n" -#~ msgstr "Romset : %1$-.100s\n" - -#~ msgid "Year: %1$s\n" -#~ msgstr "Année : %1$s\n" - -#~ msgid "Manufacturer: %1$-.100s\n" -#~ msgstr "Constructeur : %1$-.100s\n" - -#~ msgid "Driver is Clone of: %1$-.100s\n" -#~ msgstr "Ce driver est un clone de : %1$-.100s\n" - -#~ msgid "Driver is Parent\n" -#~ msgstr "Ce driver est le parent\n" - -#~ msgid "Overall: NOT WORKING\n" -#~ msgstr "En résumé : NE FONCTIONNE PAS\n" - -#~ msgid "Overall: Unemulated Protection\n" -#~ msgstr "En résumé : Protection non émulée\n" - -#~ msgid "Overall: Working\n" -#~ msgstr "En résumé : Fonctionne correctement\n" - -#~ msgid "Graphics: Imperfect Colors\n" -#~ msgstr "Graphismes : Couleurs imparfaites\n" - -#~ msgid "Graphics: Imperfect\n" -#~ msgstr "Graphismes : Imparfaits\n" - -#~ msgid "Graphics: OK\n" -#~ msgstr "Graphismes : OK\n" - -#~ msgid "Sound: Unimplemented\n" -#~ msgstr "Son : Non implémenté\n" - -#~ msgid "Sound: Imperfect\n" -#~ msgstr "Son : Imparfait\n" - -#~ msgid "Sound: OK\n" -#~ msgstr "Son : OK\n" - -#~ msgid "Driver is Skeleton: %1$s\n" -#~ msgstr "Ce driver est embryonnaire : %1$s\n" - #~ msgid "Game is Mechanical: %1$s\n" #~ msgstr "Jeu comportant des éléments mécaniques : %1$s\n" @@ -3520,9 +3817,6 @@ msgstr "" #~ msgid "Support Save: %1$s\n" #~ msgstr "Supporte les sauvegardes : %1$s\n" -#~ msgid "Screen Orientation: %1$s\n" -#~ msgstr "Orientation de l'écran: %1$s\n" - #~ msgid "Requires CHD: %1$s\n" #~ msgstr "CHD nécessaire : %1$s\n" @@ -3562,9 +3856,6 @@ msgstr "" #~ "\n" #~ "Appuyez sur une touche pour continuer." -#~ msgid " [internal]" -#~ msgstr "[interne]" - #~ msgid "Save cancelled" #~ msgstr "Sauvegarde annulée" diff --git a/language/French_Canada/strings.po b/language/French_Canada/strings.po index f07280df5b5..5e50918dc3b 100644 --- a/language/French_Canada/strings.po +++ b/language/French_Canada/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -18,32 +18,32 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -52,233 +52,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -306,7 +306,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -315,7 +315,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -324,23 +324,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -360,7 +360,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -652,36 +652,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -719,86 +719,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -962,28 +983,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -991,11 +1012,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1036,7 +1057,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1053,291 +1074,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1349,23 +1543,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1388,7 +1600,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1400,27 +1612,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1493,7 +1705,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1507,7 +1719,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1518,52 +1730,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1587,482 +1799,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2076,29 +2340,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2118,211 +2382,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2429,137 +2728,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3147,7 +3524,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Georgian/strings.po b/language/Georgian/strings.po index 5ecf6410c33..03314029322 100644 --- a/language/Georgian/strings.po +++ b/language/Georgian/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -16,32 +16,32 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -50,233 +50,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -304,7 +304,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -313,7 +313,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -322,23 +322,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -358,7 +358,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -650,36 +650,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -717,86 +717,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -960,28 +981,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -989,11 +1010,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1034,7 +1055,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1051,291 +1072,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1347,23 +1541,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1386,7 +1598,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1398,27 +1610,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1491,7 +1703,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1505,7 +1717,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1516,52 +1728,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1585,482 +1797,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2074,29 +2338,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2116,211 +2380,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2427,137 +2726,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3145,7 +3522,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/German/strings.po b/language/German/strings.po index 88cc4e04ec9..4e8c2d6878d 100644 --- a/language/German/strings.po +++ b/language/German/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2018-05-02 11:34+0200\n" "Last-Translator: Lothar Serra Mari <rootfather@scummvm.org>\n" "Language-Team: MAME Language Team\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.0.7\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -29,27 +29,27 @@ msgstr "" "\n" "Drücken Sie eine beliebige Taste zum Fortfahren" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" "Für diese Maschine müssen Abbilder in die folgenden Geräte eingehängt " "werden: " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -62,185 +62,185 @@ msgstr "" "Zum Beenden drücken Sie ''%1$s''.\n" "Um zur Emulation zurückzukehren drücken Sie ''%2$s''." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Gesamtlautstärke" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s Lautstärke" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "CPU %1$s übertakten" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "Sound %1$s übertakten" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s Aktualisierungsrate" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s Helligkeit" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s Kontrast" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s Gamma" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s Horizontale Streckung" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s Horizontale Position" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s Vertikale Streckung" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s Vertikale Position" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "Laserdisc '%1$s' Horizontale Streckung" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "Laserdisc '%1$s' Horizontale Position" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "Laserdisc '%1$s' Vertikale Streckung" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "Laserdisc '%1$s' Vertikale Position" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Vektorflimmern" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Minimale Strahlbreite" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Maximale Strahlbreite" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Gewichtung der Strahlintensität" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Fadenkreuzskalierung %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Fadenkreuzversatz %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Fadenkreuzskalierung X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Fadenkreuzskalierung Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Fadenkreuzversatz X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Fadenkreuzversatz Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**Fehler beim Speichern von ui.ini**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**Fehler beim Speichern von %s.ini**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -250,7 +250,7 @@ msgstr "" " Konfiguration gespeichert \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -259,8 +259,8 @@ msgstr "" "%s\n" " zur Favoritenliste hinzugefügt." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -269,33 +269,33 @@ msgstr "" "%s\n" " von der Favoritenliste entfernt." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d Programm-Pakete )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Treiber: \"%1$s\" Softwareliste " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - Suche: %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "Suche: %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Soundeinstellungen" @@ -323,7 +323,7 @@ msgstr "Benutzeroberfläche anpassen" msgid "Configure Directories" msgstr "Verzeichnisse konfigurieren" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[leerer Steckplatz]" @@ -332,7 +332,7 @@ msgstr "[leerer Steckplatz]" msgid "[create]" msgstr "[erzeugen]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[Softwareliste]" @@ -341,23 +341,23 @@ msgstr "[Softwareliste]" msgid "Error accessing %s" msgstr "Fehler beim Zugriff auf %s" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Zugriffsart wählen" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Nur lesend" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Lesend und schreibend" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Lesen von diesem Image, Schreiben auf ein anderes Image" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Lesen von diesem Image, Schreiben in diff" @@ -377,7 +377,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "Bilder im rechten Bereich vergrößern" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Cheats" @@ -669,36 +669,36 @@ msgstr "Synchronisierter Bildneuaufbau" msgid "Wait Vertical Sync" msgstr "Warten auf vertikalen Synchronisationsimpuls" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "An" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Aus" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Auto" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Zurück zur Maschine" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Verlassen" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Zurück zum vorherigen Menü" @@ -736,86 +736,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "Kopierschutz" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "Zeitlicher Ablauf" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "Grafik" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "Farbpalette" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "Sound" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "Kamera" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "Mikrofon" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "Bedienelemente" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "Tastatur" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "Maus" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "Festplatte" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "Drucker" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "LAN" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "WAN" @@ -1005,28 +1026,28 @@ msgstr "Teilweise unterstützt" msgid "[empty]" msgstr "[leer]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[Dateimanager]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Sortierung der Einträge ändern" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "Sortierung geändert: Einträge sind nun sortiert nach %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "Kurzem Namen" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "Beschreibung" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[Kompatible Listen]" @@ -1034,11 +1055,11 @@ msgstr "[Kompatible Listen]" msgid "File Already Exists - Override?" msgstr "Datei existiert bereits - Überschreiben?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "Nein" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Ja" @@ -1079,7 +1100,7 @@ msgstr "Natürlich" msgid "Emulated" msgstr "Emuliert" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1096,189 +1117,358 @@ msgstr "Aktiviert" msgid "Disabled" msgstr "Deaktiviert" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "Ungefiltert" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "Verfügbar" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "Nicht verfügbar" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "Funktioniert" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "Funktioniert nicht" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "Mechanisch" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "Nicht mechanisch" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "Kategorie" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "Favoriten" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "BIOS" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "Nicht BIOS" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "Eltern" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "Klone" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "Hersteller" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "Jahr" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "Speichern unterstützt" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "Speichern nicht unterstützt" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "CHD benötigt" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "Keine CHD benötigt" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "Vertikaler Bildschirm" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "Horizontaler Bildschirm" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "Benutzerdefinierter Filter" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "Ungefiltert" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "Verfügbar" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "Nicht verfügbar" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "Favoriten" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "Eltern" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "Klone" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "Jahr" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "Herausgeber" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "Unterstützt" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "Teilweise unterstützt" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "Nicht unterstützt" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "Veröffentlichungsregion" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "Gerätetyp" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "Softwareliste" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "Benutzerdefinierter Filter" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "<Filter erstellen>" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Filter auswählen:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "Filter %1$u" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Letzten Filter entfernen" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Filter hinzufügen" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "Kategorie auswählen:" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "[Keine Kategorie INI Dateien]" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "[Keine Gruppen in INI Datei]" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "Keine Kategorie INI Dateien gefunden" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "Datei" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "Keine Gruppen in Kategorie Datei gefunden" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "Gruppe" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "Klone einschließen" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Verwendung der Software" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Version: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Zurücksetzen" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1287,7 +1477,7 @@ msgstr "" "Laufzeit: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1296,7 +1486,7 @@ msgstr "" "Laufzeit: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1305,89 +1495,93 @@ msgstr "" "Ausgegebene Tickets: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Münzen %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Münzen %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (gesperrt)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Sichtbare Verzögerung" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml im Ordner der Benutzeroberfläche gespeichert." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Name: Beschreibung:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt im Ordner der Benutzeroberfläche gespeichert." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Liste im XML-Format exportieren (wie -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" "Liste im XML-Format exportieren (wie -listxml, Geräte jedoch ausschließen)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Liste im TXT-Format exportieren (wie -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Treiber" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "Diese Maschine besitzt kein BIOS." -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Zu Favoriten hinzufügen" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Aus Favoriten entfernen" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (Standard)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Erweiterungen" @@ -1399,23 +1593,41 @@ msgstr "Pseudoterminals" msgid "[failed]" msgstr "[fehlgeschlagen]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "Lade Status" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "Speichere Status" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1438,7 +1650,7 @@ msgid "Other Controls" msgstr "Weitere Bedienelemente" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1450,27 +1662,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1552,7 +1764,7 @@ msgstr "" "txt im Verzeichnis \"docs\" zur Konfiguration von %2$s." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Optionen konfigurieren" @@ -1566,7 +1778,7 @@ msgid "Type name or select: (random)" msgstr "Geben Sie den Namen ein oder wählen Sie: (zufällige Auswahl)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1577,52 +1789,52 @@ msgid "Driver: %1$-.100s" msgstr "Treiber: %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "Insgesamt: FUNKTIONIERT NICHT" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "Insgesamt: Nicht emulierter Kopierschutz" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "Insgesamt: Funktioniert" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "Grafik: Nicht implementiert, " #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Grafik: Fehlerhaft, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Grafik: OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "Sound: Keine" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Sound: Nicht implementiert" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Sound: Fehlerhaft" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Sound: OK" @@ -1648,466 +1860,523 @@ msgid "Reload All" msgstr "Alle neu laden" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROMs" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "Software-Medien" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "Benutzeroberfläche" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Sprache" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "Illustrationen" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Samples" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Fadenkreuze" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DATs" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INIs" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DATs" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "Kategorie INIs" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Schnappschüsse" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Icons" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Schnappschüsse" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Bedienfelder" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Gehäuse" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Flyer" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Titelbilder" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Enden" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "Platinen" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "Marquees" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Bedienfelder" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Fadenkreuze" +msgctxt "path-option" +msgid "PCBs" +msgstr "Platinen" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Illustrationen" +msgctxt "path-option" +msgid "Flyers" +msgstr "Flyer" + +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Bosse" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" msgstr "Vorschau Illustrationen" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "Auswahl" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "GameOver" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "Handbuch" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Logos" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Spielstände" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Gegen" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Cover" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Ordnereinstellungen" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Aktuelle %1$s-Ordner" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Ordner wechseln" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Ordner hinzufügen" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Ordner entfernen" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "%1$s-Ordner ändern - Suche: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "%1$s-Ordner hinzufügen - Suche: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Zum Setzen drücken Sie TAB" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "%1$s-Ordner entfernen" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " FARBEN" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " STIFTE" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Maschine konfigurieren" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "ROM-Satz\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "Jahr\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "Hersteller\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "Treiber ist ein Klon von\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "Treiber ist Ursprungs-Treiber\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "Analoge Bedienelemente\tVorhanden\n" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "Tastatureingaben\tVorhanden\n" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "Insgesamt\tFUNKTIONIERT NICHT\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "Insgesamt\tNicht emulierter Kopierschutz\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "Insgesamt\tFunktioniert\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "Grafik\tNicht implementiert\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "Grafik\tFarbwiedergabe falsch\n" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "Grafik\tFarbwiedergabe fehlerhaft\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "Grafik\tFehlerhaft\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "Grafik\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "Sound\tKeine\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "Sound\tNicht implementiert\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "Sound\tFehlerhaft\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "Sound\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "Kamera\tNicht implementiert\n" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "Kamera\tFehlerhaft\n" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "Mikrofon\tNicht implementiert\n" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "Mikrofon\tFehlerhaft\n" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "Bedienelemente\tNicht implementiert\n" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "Bedienelemente\tFehlerhaft\n" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "Tastatur\tNicht implementiert\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "Tastatur\tFehlerhaft\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "Maus\tNicht implementiert\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "Maus\tFehlerhaft\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "Festplatte\tNicht implementiert\n" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "Festplatte\tFehlerhaft\n" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "Drucker\tNicht implementiert\n" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "Drucker\tFehlerhaft\n" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "LAN\tNicht implementiert\n" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "LAN\tFehlerhaft\n" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "WAN\tNicht implementiert\n" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "WAN\tFehlerhaft\n" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "Zeitlicher Ablauf\tNicht implementiert\n" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "Zeitlicher Ablauf\tFehlerhaft\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "Maschine ist mechanisch\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "Maschine ist mechanisch\tNein\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "Benötigt Illustrationen\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "Benötigt Illustrationen\tNein\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "Benötigt klickbare Illustrationen\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "Benötigt klickbare Illustrationen\tNein\n" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "Unterstützt Cocktail-Modus\tNein\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "Treiber ist BIOS\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "Treiber ist BIOS\tNein\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "Unterstützt Speichern\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "Unterstützt Speichern\tNein\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "Bildschirm-Ausrichtung\tVertikal\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "Bildschirm-Ausrichtung\tHorizontal\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "Benötigt CHD\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "Benötigt CHD\tNein\n" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "ROM-Überprüfung\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "ROM-Überprüfung\tFEHLERHAFT\n" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "Samples-Überprüfung\tNicht nötig\n" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "Samples-Überprüfung\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "Samples-Überprüfung\tFEHLERHAFT\n" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" @@ -2115,17 +2384,12 @@ msgstr "" "ROM-Überprüfung\tDeaktiviert\n" "Samples-Überprüfung\tDeaktiviert\n" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d Maschinen (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "ROM-Satz: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "System: %1$-.100s" @@ -2139,23 +2403,23 @@ msgstr "Auswahlliste - Suche: " msgid "Double click or press %1$s to select" msgstr "Zum Auswählen, doppelklicken oder drücken Sie %1$s" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" "ROMs für alle %1$u als nicht verfügbar gekennzeichneten Maschinen prüfen?" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "ROMs für alle %1$u Maschinen prüfen?" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(Ergebnisse werden unter %1$s gespeichert)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" @@ -2164,7 +2428,7 @@ msgstr "" "Prüfe ROMs für Maschine %2$u von %3$u...\n" "%1$s" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "Audit starten" @@ -2184,212 +2448,247 @@ msgstr "Info/Bild ausblenden" msgid "Hide Both" msgstr "Beide ausblenden" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Schriftarten" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Farben" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Sprache" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Seitenbereiche anzeigen" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Einstellungen Benutzeroberfläche" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "Standard" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Schriftart für Benutzeroberfläche" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Fett" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Kursiv" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Linien" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Textgröße für Informationen" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Schriftart-Einstellungen für Benutzeroberfläche" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "Beispieltext - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Normaler Text" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Farbe für Auswahl" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Normaler Texthintergrund" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Hintergrundfarbe für Auswahl" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Farbe für Unterelement" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Klon" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Rand" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Hintergrund" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "DIP-Schalter" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Nicht verfügbare Farbe" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Schieberegler-Farbe" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Hintergrund Gfx-Anzeige" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Farbe für Mouseover" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Hintergrundfarbe für Mouseover" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Farbe für Mausklick" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Hintergrundfarbe für Mausklick" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Auf Originalfarben zurücksetzen" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Farbeinstellungen für Benutzeroberfläche" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "Doppelklicken oder drücken Sie %1$s, um den Farbwert zu ändern" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Menüvorschau" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Normal" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Unterelement" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Auswahl" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Mouseover" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "ARGB-Einstellungen" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Alpha" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Rot" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Grün" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Blau" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Aus Palette wählen" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Farbvorschau =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Weiß" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Silber" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Grau" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Schwarz" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Rot" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Orange" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Gelb" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Grün" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Blau" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Violett" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2420,7 +2719,7 @@ msgstr "Analoge Bedienelemente" #: src/frontend/mame/ui/mainmenu.cpp:71 msgid "DIP Switches" -msgstr "" +msgstr "DIP-Schalter" #: src/frontend/mame/ui/mainmenu.cpp:73 msgid "Machine Configuration" @@ -2496,137 +2795,215 @@ msgid "Select New Machine" msgstr "Neue Maschine auswählen" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Bedienfelder" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Schnappschüsse" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "Gehäuse" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "Platine" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "Flyer" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Vorschau Illustrationen" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Bosse" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "Logo" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Gegen" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Game Over" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Handbuch" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Spielstände" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Cover" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Favoriten verwalten" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Angezeigte Liste in Datei exportieren" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "DATs Ansicht anzeigen" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Softwareauswahl:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "BIOS-Auswahl:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "Programm ist ein Klon von: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "Programm ist Ursprungs-Programm" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Unterstützt: Nein" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Unterstützt: Teilweise" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Unterstützt: Ja" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "ROM-Satz: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "Treiber ist ein Klon von: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "ROM-Satz: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "Treiber ist Ursprungs-Treiber" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "Treiber ist ein Klon von: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Images" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Informationen" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "Drücken Sie eine beliebige Taste, um fortzufahren." -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Verwendung" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Allgemeine Informationen" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Sound" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Samplerate" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Verwende externe Samples" @@ -2680,12 +3057,12 @@ msgstr " Bildschirm '%1$s': Vektor\n" #: src/frontend/mame/ui/devopt.cpp:116 #, c-format msgid " Screen '%1$s': %2$d × %3$d (V) %4$s Hz\n" -msgstr "" +msgstr " Bildschirm '%1$s': %2$d × %3$d (V) %4$s Hz\n" #: src/frontend/mame/ui/devopt.cpp:117 #, c-format msgid " Screen '%1$s': %2$d × %3$d (H) %4$s Hz\n" -msgstr "" +msgstr " Bildschirm '%1$s': %2$d × %3$d (H) %4$s Hz\n" #: src/frontend/mame/ui/devopt.cpp:130 msgid "* Sound:\n" @@ -3232,7 +3609,7 @@ msgstr "MARP-Spielstand" msgid "Gameinit" msgstr "Gameinit" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Geschichte" @@ -3256,18 +3633,70 @@ msgstr "MESS-Info" msgid "MAMEinfo" msgstr "MAME-Info" -#~ msgid "Backdrops" -#~ msgstr "Backdrops" +#~ msgid "Custom UI Settings" +#~ msgstr "Einstellungen Benutzeroberfläche" + +#~ msgid "Software Usage" +#~ msgstr "Verwendung der Software" + +#~ msgid "Usage" +#~ msgstr "Verwendung" + +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "Benutzeroberfläche" + +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Sprache" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Samples" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Cheats" + +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "Titelbilder" -#~ msgid "Overlays" -#~ msgstr "Overlays" +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "Enden" -#~ msgid "Bezels" -#~ msgstr "Bezel" +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "GameOver" -#~ msgid "CPanels" +#~ msgctxt "selmenu-artwork" +#~ msgid "Control Panels" #~ msgstr "Bedienfelder" +#~ msgctxt "selmenu-artwork" +#~ msgid "Flyers" +#~ msgstr "Flyer" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "Titelbilder" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Enden" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Marquees" +#~ msgstr "Marquees" + +#~ msgid "Select" +#~ msgstr "Auswahl" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "ROM-Satz: %1$-.100s" + #~ msgid "View" #~ msgstr "Ansicht" @@ -3277,9 +3706,6 @@ msgstr "MAME-Info" #~ msgid "Full" #~ msgstr "Voll" -#~ msgid "Dip Switches" -#~ msgstr "DIP-Schalter" - #~ msgid "Select position to load from" #~ msgstr "Ladeposition wählen" @@ -3380,34 +3806,6 @@ msgstr "MAME-Info" #~ msgid "Bilinear snapshot" #~ msgstr "Bilineare Bildschirmfotos" -#, c-format -#~ msgid " %1$d×%2$s %3$d.%4$06d MHz\n" -#~ msgstr " %1$d×%2$s %3$d.%4$06d MHz\n" - -#~ msgid " %1$d×%2$s %5$d.%6$03d kHz\n" -#~ msgstr " %1$d×%2$s %5$d.%6$03d kHz\n" - -#~ msgid " %2$s %3$d.%4$06d MHz\n" -#~ msgstr " %2$s %3$d.%4$06d MHz\n" - -#~ msgid " %2$s %5$d.%6$03d kHz\n" -#~ msgstr " %2$s %5$d.%6$03d kHz\n" - -#, c-format -#~ msgid " Screen '%1$s': %2$d × %3$d (V) %4$f Hz\n" -#~ msgstr " Bildschirm '%1$s': %2$d × %3$d (V) %4$f Hz\n" - -#, c-format -#~ msgid " Screen '%1$s': %2$d × %3$d (H) %4$f Hz\n" -#~ msgstr " Bildschirm '%1$s': %2$d × %3$d (H) %4$f Hz\n" - -#, c-format -#~ msgid " %1$d×%2$s\n" -#~ msgstr " %1$d×%2$s\n" - -#~ msgid " %2$s\n" -#~ msgstr " %2$s\n" - #~ msgid "" #~ "The software selected is missing one or more required ROM or CHD images. " #~ "Please select a different one." diff --git a/language/Greek/strings.po b/language/Greek/strings.po index a246efac185..ec68838d699 100644 --- a/language/Greek/strings.po +++ b/language/Greek/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2021-06-06 22:30+0300\n" "Last-Translator: Mame.gr - BraiNKilleR\n" "Language-Team: MAME Language Team\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -27,12 +27,12 @@ msgstr "" "\n" "Πιέστε ένα πλήκτρο για συνέχεια" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" "Αυτός ο οδηγός απαιτεί εικόνες να φορτωθούν στην ακόλουθη συσκευή (ες): " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" @@ -41,7 +41,7 @@ msgstr "" "Χειρισμός UI ενεργοποιημένος\n" "Χρήση %1$s για εναλλαγή" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" @@ -50,7 +50,7 @@ msgstr "" "Χειρισμός UI απενεργοποιημένος\n" "Χρήση %1$s για εναλλαγή" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -63,185 +63,185 @@ msgstr "" "Πατήστε ''%1$s'' για να εγκαταλείψετε,\n" "Πατήστε ''%2$s'' για να επιστρέψετε στην εξομοίωση." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Κύρια Ένταση" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s Ένταση" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "Υπερχρονισμός CPU %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "Υπερχρονισμός %1$s ήχου" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s Ρυθμός Ανανέωσης" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s Φωτεινότητα" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s Αντίθεση" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s Γάμμα" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s Οριζόντια Επέκταση" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s Οριζόντια Θέση" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s Κάθετη Επέκταση" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s Κάθετη Θέση" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "Laserdisc '%1$s' Οριζόντια Επέκταση" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "Laserdisc '%1$s' Οριζόντια Θέση" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "Laserdisc '%1$s' Κάθετη Επέκταση" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "Laserdisc '%1$s' Κάθετη Θέση" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Τρεμόπαιγμα Διανύσματος" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Ελάχιστο Πλάτος Ακτίνας" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Μέγιστο Πλάτος Ακτίνας" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "Μέγεθος Κουκίδας Ακτίνας" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Βάρος Έντασης Ακτίνας" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Κλίμακα Στόχαστρου %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Μετατόπιση Στοχάστρου %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Κλίμακα Στόχαστρου X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Κλίμακα Στόχαστρου Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Μετατόπιση Στοχάστρου X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Μετατόπιση Στοχάστρου Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**Σφάλμα αποθήκευσης ui.ini**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**Σφάλμα αποθήκευσης %s.ini**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -251,7 +251,7 @@ msgstr "" " Οι ρυθμίσεις αποθηκεύτηκαν \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -260,8 +260,8 @@ msgstr "" "%s\n" " προστέθηκε στη λίστα αγαπημένων." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -270,33 +270,33 @@ msgstr "" "%s\n" " αφαιρέθηκε από τη λίστα αγαπημένων." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d πακέτα λογισμικού)" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Οδηγός: \"%1$s\" λίστα λογισμικού " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - Αναζήτηση: %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "Αναζήτηση: %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Επιλογές Ήχου" @@ -324,7 +324,7 @@ msgstr "Προσαρμογή UI" msgid "Configure Directories" msgstr "Ρύθμιση Φακέλων" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[κενή υποδοχή]" @@ -333,7 +333,7 @@ msgstr "[κενή υποδοχή]" msgid "[create]" msgstr "[δημιουργία]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[λίστα λογισμικού]" @@ -342,23 +342,23 @@ msgstr "[λίστα λογισμικού]" msgid "Error accessing %s" msgstr "Σφάλμα πρόσβασης %s" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Επιλέξτε λειτουργία πρόσβασης" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Μόνο για Ανάγνωση" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Ανάγνωσης-εγγραφής" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Ανάγνωση αυτής της εικόνας, εγγραφή σε άλλη" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Ανάγνωση αυτής της εικόνας, εγγραφή σε αρχείο αλλαγών" @@ -378,7 +378,7 @@ msgstr "Επιλογή του τελευταίου μηχανήματος που msgid "Enlarge images in the right panel" msgstr "Μεγέθυνση εικόνων στο δεξιό πίνακα" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Cheats" @@ -670,36 +670,36 @@ msgstr "Συγχρονισμένη Ανανέωση" msgid "Wait Vertical Sync" msgstr "Αναμονή για Κάθετο Συγχρονισμό" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "On" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Off" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Αυτόματο" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "Έναρξη Μηχανήματος" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Επιστροφή στο Μηχάνημα" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Έξοδος" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Επιστροφή στο Προηγούμενο Μενού" @@ -737,86 +737,107 @@ msgid "Cannot change options while recording!" msgstr "Δεν είναι δυνατή η αλλαγή επιλογών κατά την εγγραφή!" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "προστασία" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "χρονισμός" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "γραφικά" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "χρωματική παλέτα" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "ήχος" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "υλικό καταγραφής" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "κάμερα" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "μικρόφωνο" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "χειρισμός" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "πληκτρολόγιο" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "ποντίκι" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "μέσα" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "δίσκος" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "εκτυπωτής" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "μαγνητική ταινία" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "διάτρητη ταινία" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "μαγνητικό τύμπανο" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "αποθήκευση στερεάς κατάστασης" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "επικοινωνίες" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "Δίκτυο LAN" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "Δίκτυο WAN" @@ -1012,28 +1033,28 @@ msgstr "Υποστηρίζεται μερικώς" msgid "[empty]" msgstr "[κενό]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[Διαχείριση αρχείων]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Εναλλαγή Σειράς Στοιχείων" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "Εναλλακτική Σειρά: οι εγγραφές είναι ταξινομημένες κατά %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "σύντομο όνομα" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "περιγραφή" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[συμβατές λίστες]" @@ -1041,11 +1062,11 @@ msgstr "[συμβατές λίστες]" msgid "File Already Exists - Override?" msgstr "Το Αρχείο Υπάρχει Ήδη - Να Αντικατασταθεί;" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "Όχι" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Ναι" @@ -1086,7 +1107,7 @@ msgstr "Φυσικό" msgid "Emulated" msgstr "Εξομοιωμένο" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "%1$s [root%2$s]" @@ -1103,189 +1124,358 @@ msgstr "Ενεργοποιημένο" msgid "Disabled" msgstr "Απενεργοποιημένο" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "Αφιλτράριστα" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "Διαθέσιμα" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "Μη Διαθέσιμα" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "Λειτουργούν" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "Δεν Λειτουργούν" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "Μηχανικά" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "Μη Μηχανικά" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "Κατηγορία" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "Αγαπημένα" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "BIOS" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "Μη BIOS" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "Γονικά" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "Κλώνοι" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "Κατασκευαστής" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "Έτος" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "Υποστήριξη Αποθήκευσης" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "Μη Υποστήριξη Αποθήκευσης" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "Απαιτείται CHD" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "Δεν Απαιτείται CHD" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "Κάθετη οθόνη" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "Οριζόντια οθόνη" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "Προσαρμοσμένο Φίλτρο" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "Αφιλτράριστα" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "Διαθέσιμα" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "Μη Διαθέσιμα" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "Αγαπημένα" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "Γονικά" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "Κλώνοι" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "Έτος" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "Εκδότης" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "Υποστηρίζεται" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "Υποστηρίζεται Μερικώς" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "Δεν Υποστηρίζεται" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "Περιοχή Κυκλοφορίας" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "Τύπος συσκευής" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "Λίστα Λογισμικού" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "Προσαρμοσμένο Φίλτρο" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "<ρύθμιση φίλτρων>" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Επιλογή προσαρμοσμένων φίλτρων:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "Φίλτρο %1$u" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Αφαίρεση τελευταίου φίλτρου" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Προσθήκη φίλτρου" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "Επιλογή κατηγορίας:" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "[χωρίς αρχεία INI κατηγοριών]" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "[χωρίς ομάδες στο αρχείο INI]" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "Δεν βρέθηκαν αρχεία INI κατηγοριών" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "Αρχείο" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "Δεν βρέθηκαν ομάδες στο αρχείο κατηγορίας" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "Ομάδα" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "Περιλαμβάνονται κλώνοι" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Χρήση Λογισμικού" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Αναθεώρηση: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Επαναφορά" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1294,7 +1484,7 @@ msgstr "" "Ώρα λειτουργίας: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1303,7 +1493,7 @@ msgstr "" "Ώρα λειτουργίας: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1312,88 +1502,92 @@ msgstr "" "Εισιτήρια που διανέμονται: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Κέρμα %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Κέρμα %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (κλειδωμένο)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "Ορατότητα P%d" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "Στόχαστρο P%d" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Ορατή Καθυστέρηση" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml αποθηκεύτηκε στο φάκελο ui." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Όνομα: Περιγραφή:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt αποθηκεύτηκε στο φάκελο ui." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Εξαγωγή σε μορφή XML (όπως -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "Εξαγωγή σε μορφή XML (όπως -listxml, χωρίς τις συσκευές)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Εξαγωγή σε μορφή TXT (όπως -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Οδηγός" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "Αυτό το μηχάνημα δεν έχει BIOS." -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Προσθήκη Στα Αγαπημένα" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Αφαίρεση Από Τα Αγαπημένα" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "Αποθήκευση Παραμετροποίησης Μηχανήματος" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "Ρύθμιση Μηχανήματος:" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (προεπιλογή)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Πρόσθετα" @@ -1405,27 +1599,44 @@ msgstr "Ψευδο τερματικά" msgid "[failed]" msgstr "[απέτυχε]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "Δε βρέθηκαν αποθηκευμένες καταστάσεις" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "Φόρτωση Κατάστασης" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "Επιλογή κατάστασης για φόρτωση" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "Αποθήκευση Κατάστασης" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" -"Πατήστε ένα πλήκτρο ή κουμπί μοχλού, ή επιλέξτε κατάσταση για " -"αντικατάσταση" +"Πατήστε ένα πλήκτρο ή κουμπί μοχλού, ή επιλέξτε κατάσταση για αντικατάσταση" #: src/frontend/mame/ui/slotopt.cpp:192 #, c-format @@ -1446,8 +1657,8 @@ msgid "Other Controls" msgstr "Άλλα Στοιχεία Ελέγχου" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." -msgstr "Αυτό το μηχάνημα δεν έχει χαρτογραφηση εισαγωγής." +msgid "This machine has no configurable inputs." +msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 msgid "Pressed" @@ -1458,27 +1669,27 @@ msgstr "Πατήθηκε" msgid "Invalid sequence entered" msgstr "Έγινε εισαγωγή μη έγκυρης ακολουθίας" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "[root%1$s]" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "Πιέστε το πλήκτρο %1$s για να ορίσετε\n" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "Πιέστε το πλήκτρο %1$s για προσθήκη\n" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "Πιέστε το πλήκτρο %1$s για καθαρισμό" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "Πιέστε το πλήκτρο %1$s για επαναφορά προεπιλογών\n" @@ -1563,7 +1774,7 @@ msgstr "" "διαμόρφωση %2$s.." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Ρύθμιση Επιλογών" @@ -1577,7 +1788,7 @@ msgid "Type name or select: (random)" msgstr "Πληκτρολογήστε όνομα ή επιλέξτε: (τυχαίο)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1588,52 +1799,52 @@ msgid "Driver: %1$-.100s" msgstr "Οδηγός: %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "Συνολικά: ΔΕΝ ΛΕΙΤΟΥΡΓΕΙ" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "Συνολικά: Προστασία Μη Εξομοιωμένη" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "Συνολικά: Λειτουργεί" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "Γραφικά: Μη υλοποιημένα, " #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Γραφικά: Ατελή, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Γραφικά: OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "Ήχος: Κανένας" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Ήχος: Δεν Έχει Υλοποιηθεί" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Ήχος: Ατελής" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Ήχος: OK" @@ -1659,466 +1870,523 @@ msgid "Reload All" msgstr "Επαναφόρτωση όλων" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROMs" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "Μέσα Λογισμικού" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "UI" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Γλώσσα" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Δείγματα" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Στόχαστρα" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DATs" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INIs" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DATs" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "INIs Κατηγοριών" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Στιγμιότυπα" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Εικονίδια" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Στιγμιότυπα" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Πίνακες ελέγχου" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Καμπίνες" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Φυλλάδια" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Τίτλοι" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Τερματισμοί" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "PCBs" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "Μαρκίζες" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Πίνακες ελέγχου" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Στόχαστρα" +msgctxt "path-option" +msgid "PCBs" +msgstr "PCBs" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Artworks" +msgctxt "path-option" +msgid "Flyers" +msgstr "Φυλλάδια" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Αρχηγοί" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" -msgstr "Προεπισκόπηση Artworks" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "Επιλογή" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "GameOver" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "Πως να" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Λογότυπα" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Βαθμολογία" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Versus" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Εξώφυλλα" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Ρύθμιση Φακέλων" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Τρέχοντες Φάκελοι για %1$s" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Αλλαγή Φακέλου" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Προσθήκη Φακέλου" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Αφαίρεση Φακέλου" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "Αλλαγή Φακέλου %1$s - Αναζήτηση: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "Προσθήκη Φακέλου %1$s - Αναζήτηση: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Πιέστε το πλήκτρο TAB για να ορίσετε" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "Αφαίρεση Φακέλου %1$s" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " ΧΡΩΜΑΤΑ" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " ΓΡΑΦΙΔΕΣ" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Ρύθμιση Μηχανήματος" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "Romset\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "Έτος\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "Κατασκευαστής\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "Ο Οδηγός είναι Κλώνος του\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "Ο Οδηγός είναι Γονικός\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "Αναλογικός Χειρισμός\tΝαι\n" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "Εισαγωγή Πληκτρολογίου\tΝαι\n" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "Συνολικά\tΔΕΝ ΛΕΙΤΟΥΡΓΕΙ\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "Συνολικά\tΜη Εξομοιωμένη Προστασία\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "Συνολικά\tΛειτουργεί\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "Γραφικά\tΜη υλοποιημένα\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "Γραφικά\tΛάθος Χρώματα\n" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "Γραφικά\tΑτελή Χρώματα\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "Γραφικά\tΑτελή\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "Γραφικά\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "Ήχος\tΚανένας\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "Ήχος\tΜη υλοποιημένος\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "Ήχος\tΑτελής\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "Ήχος\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "Καταγραφή\tΜη υλοποιημένη\n" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "Καταγραφή\tΑτελής\n" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "Κάμερα\tΜη υλοποιημένη\n" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "Κάμερα\tΑτελής\n" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "Μικρόφωνο\tΜη υλοποιημένο\n" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "Μικρόφωνο\tΑτελές\n" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "Χειρισμός\tΜη υλοποιημένος\n" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "Χειρισμός\tΑτελής\n" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "Πληκτρολόγιο\tΜη υλοποιημένο\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "Πληκτρολόγιο\tΑτελές\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "Ποντίκι\tΜη υλοποιημένο\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "Ποντίκι\tΑτελές\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "Μέσα\tΜη υλοποιημένα\n" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "Μέσα\tΑτελή\n" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "Δίσκος\tΜη υλοποιημένος\n" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "Δίσκος\tΑτελής\n" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "Εκτυπωτής\tΜη υλοποιημένος\n" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "Εκτυπωτής\tΑτελής\n" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "Μαγ. Ταινία\tΜη υλοποιημένη\n" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "Μαγ. Ταινία\tΑτελής\n" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "Διάτρητη Ταινία\tΜη υλοποιημένη\n" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "Διάτρητη Ταινία\tΑτελής\n" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "Μαγ. Τύμπανο\tΜη υλοποιημένο\n" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "Μαγ. Τύμπανο\tΑτελές\n" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "(EP)ROM\tΜη υλοποιημένη\n" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "(EP)ROM\tΑτελής\n" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "Επικοινωνίες\tΜη υλοποιημένες\n" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "Επικοινωνίες\tΑτελής\n" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "LAN\tΜη υλοποιημένο\n" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "LAN\tΑτελές\n" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "WAN\tΜη υλοποιημένο\n" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "WAN\tΑτελές\n" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "Χρονισμός\tΜη υλοποιημένος\n" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "Χρονισμός\tΑτελής\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "Μηχανική Συσκευή\tΝαι\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "Μηχανική Συσκευή\tΌχι\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "Απαιτεί Artwork\tΝαι\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "Απαιτεί Artwork\tΌχι\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "Απαιτεί Artwork για επιλογή\tΝαι\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "Απαιτεί Artwork για επιλογή\tΌχι\n" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "Υποστήριξη Κοκτέιλ\tΌχι\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "Ο οδηγός είναι BIOS\tΝαι\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "Ο οδηγός είναι BIOS\tΌχι\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "Υποστήριξη Αποθήκευσης\tΝαι\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "Υποστήριξη Αποθήκευσης\tΌχι\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "Προσανατολισμός Οθόνης\tΚάθετος\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "Προσανατολισμός Οθόνης\tΟριζόντιος\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "Απαιτεί CHD\tΝαι\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "Απαιτεί CHD\tΌχι\n" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "Έλεγχος ROMs\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "Έλεγχος ROMs\tΛΑΘΟΣ\n" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "Έλεγχος Δειγμάτων Ήχου\tΔεν απαιτείται\n" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "Έλεγχος Δειγμάτων Ήχου\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "Έλεγχος Δειγμάτων Ήχου\tΛΑΘΟΣ\n" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" @@ -2126,17 +2394,12 @@ msgstr "" "Έλεγχος ROMs \tΑπενεργοποιημένος\n" "Έλεγχος Δειγμάτων Ήχου \tΑπενεργοποιημένος\n" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d μηχανήματα (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "Romset: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "Σύστημα: %1$-.100s" @@ -2150,22 +2413,22 @@ msgstr "Λίστα Επιλογής - Αναζήτηση: " msgid "Double click or press %1$s to select" msgstr "Κάντε διπλό κλικ ή πατήστε %1$s για να επιλέξετε" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "Έλεγχος ROMs για %1$u μηχανήματα που δεν είναι διαθέσιμα;" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "Έλεγχος ROMs για όλα τα %1$u μηχανήματα;" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(τα αποτελέσματα θα αποθηκευτούν στο %1$s)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" @@ -2174,7 +2437,7 @@ msgstr "" "Γίνεται έλεγχος ROMs για το μηχάνημα %2$u από %3$u...\n" "%1$s" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "Έναρξή Ελέγχου" @@ -2194,212 +2457,247 @@ msgstr "Απόκρυψη Πληροφορίων/Εικόνας" msgid "Hide Both" msgstr "Απόκρυψη Όλων" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Γραμματοσειρές" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Χρώματα" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Γλώσσα" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Προβολή πλευρικών πάνελ" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Προσαρμοσμένες Ρυθμίσεις UI" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "προεπιλογή" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Γραμματοσειρά UI" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Έντονα" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Πλάγια" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Γραμμές" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Μέγεθος κειμένου πληροφοριών" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Ρυθμίσεις γραμματοσειρών UI" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "Δείγμα κειμένου - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Κανονικό κείμενο" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Χρώμα επιλεγμένου" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Φόντο κανονικού κειμένου" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Χρώμα φόντου επιλεγμένου" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Χρώμα δευτερεύοντος στοιχείου" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Κλώνος" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Περίγραμμα" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Φόντο" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "Μικροδιακόπτης" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Χρώμα μη διαθέσιμου" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Χρώμα Slider" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Φόντο Gfx προβολής" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Χρώμα Mouse over" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Χρώμα φόντου Mouse over" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Χρώμα Mouse down" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Χρώμα φόντου Mouse down" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Επαναφορά αρχικών χρωμάτων" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Ρυθμίσεις χρωμάτων UI" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "Κάντε διπλό κλικ ή πατήστε %1$s για να αλλάξετε την τιμή του χρώματος" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Προεπισκόπηση του μενού" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Κανονικό" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Δευτερεύον στοιχείο" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Επιλεγμένο" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Mouse Over" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "Ρυθμίσεις ARGB" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Άλφα" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Κόκκινο" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Πράσινο" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Μπλε" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Επιλέξτε από την παλέτα" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Προεπισκόπηση χρώματος =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Λευκό" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Ασημί" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Γκρίζο" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Μαύρο" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Κόκκινο" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Πορτοκαλί" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Κίτρινο" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Πράσινο" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Μπλε" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Βιολετί" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2506,81 +2804,159 @@ msgid "Select New Machine" msgstr "Επιλέξτε Νέο Μηχάνημα" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Πίνακες Ελέγχου" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Στιγμιότυπα" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "Καμπίνα" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "Πίνακας Ελέγχου" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "PCB" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "Φυλλάδιο" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Προεπισκόπηση Artworks" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Αρχηγοί" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "Λογότυπο" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Versus" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Game Over" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Πως να" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Βαθμολογία" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Εξώφυλλα" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Προσθήκη ή αφαίρεση από τα αγαπημένα" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Εξαγωγή λίστας σε αρχείο" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "Εμφάνιση προβολής DATs" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Επιλογή τμημάτων λογισμικού:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "Επιλογή BIOS:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "Το λογισμικό είναι κλώνος του: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "Το λογισμικό είναι γονικό" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Υποστηρίζεται: Όχι" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Υποστηρίζεται: Μερικώς" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Υποστηρίζεται: Ναι" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "Ο Οδηγός είναι κλώνος του: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "Romset: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "Ο Οδηγός είναι γονικός" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "Ο Οδηγός είναι κλώνος του: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Εικόνες" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Πληροφορίες" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" @@ -2591,7 +2967,7 @@ msgstr "" "Παρακαλώ προμηθευτείτε τα σωστά αρχεία ή επιλέξτε ένα διαφορετικό σύστημα.\n" "\n" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" @@ -2603,49 +2979,49 @@ msgstr "" "αντικείμενο λογισμικού.\n" "\n" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "λανθασμένο άθροισμα ελέγχου" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "λανθασμένο μήκος" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "δεν βρέθηκε" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "%1$s (%2$s) - %3$s\n" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "%1$s - %2$s\n" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "Πιέστε ένα πλήκτρο για συνέχεια." -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Χρήση" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Γενικές Πληροφορίες" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Ήχος" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Ρυθμός Δειγματοληψίας" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Χρήση Εξωτερικών Δειγμάτων Ήχου" @@ -3256,7 +3632,7 @@ msgstr "MARPScore" msgid "Gameinit" msgstr "Αρχικοποίηση παιχνιδιού" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Ιστορία" @@ -3280,3 +3656,69 @@ msgstr "MESSinfo" msgid "MAMEinfo" msgstr "MAMEinfo" +#~ msgid "Custom UI Settings" +#~ msgstr "Προσαρμοσμένες Ρυθμίσεις UI" + +#~ msgid "Software Usage" +#~ msgstr "Χρήση Λογισμικού" + +#~ msgid "Usage" +#~ msgstr "Χρήση" + +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "UI" + +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Γλώσσα" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Δείγματα" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Cheats" + +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "Τίτλοι" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "Τερματισμοί" + +#~ msgctxt "path-option" +#~ msgid "Artworks" +#~ msgstr "Artworks" + +#~ msgctxt "path-option" +#~ msgid "Artworks Preview" +#~ msgstr "Προεπισκόπηση Artworks" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "GameOver" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "Τίτλοι" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Τερματισμοί" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Marquees" +#~ msgstr "Μαρκίζες" + +#~ msgid "This machine has no input map." +#~ msgstr "Αυτό το μηχάνημα δεν έχει χαρτογραφηση εισαγωγής." + +#~ msgid "Select" +#~ msgstr "Επιλογή" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "romset: %1$-.100s" diff --git a/language/Hebrew/strings.po b/language/Hebrew/strings.po index 40ad26f7f7d..23871f2956a 100644 --- a/language/Hebrew/strings.po +++ b/language/Hebrew/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -17,32 +17,32 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -51,233 +51,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -305,7 +305,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -314,7 +314,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -323,23 +323,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -359,7 +359,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -651,36 +651,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -718,86 +718,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -961,28 +982,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -990,11 +1011,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1035,7 +1056,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1052,291 +1073,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1348,23 +1542,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1387,7 +1599,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1399,27 +1611,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1492,7 +1704,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1506,7 +1718,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1517,52 +1729,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1586,482 +1798,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2075,29 +2339,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2117,211 +2381,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2428,137 +2727,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3146,7 +3523,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Hindi/strings.po b/language/Hindi/strings.po index c1e2d0c55eb..59f63f2ae05 100644 --- a/language/Hindi/strings.po +++ b/language/Hindi/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -16,32 +16,32 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -50,233 +50,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -304,7 +304,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -313,7 +313,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -322,23 +322,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -358,7 +358,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -650,36 +650,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -717,86 +717,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -960,28 +981,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -989,11 +1010,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1034,7 +1055,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1051,291 +1072,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1347,23 +1541,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1386,7 +1598,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1398,27 +1610,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1491,7 +1703,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1505,7 +1717,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1516,52 +1728,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1585,482 +1797,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2074,29 +2338,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2116,211 +2380,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2427,137 +2726,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3145,7 +3522,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Hungarian/strings.po b/language/Hungarian/strings.po index 68e534baf2f..a7ddac6f638 100644 --- a/language/Hungarian/strings.po +++ b/language/Hungarian/strings.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2017-05-20 09:18+0200\n" "Last-Translator: Delirious <zsoltn71@gmail.com>\n" "Language-Team: MAME Language Team\n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Poedit 1.8.11\n" "X-Loco-Parser: loco_parse_mo\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -25,27 +25,27 @@ msgstr "" "\n" "Nyomj egy gombot a folytatáshoz" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" "Az illesztő számára szükségesek a következő eszköz(ök) által betöltött " "képek: " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -58,185 +58,185 @@ msgstr "" "Nyomj ''%1$s'' gombot a kilépéshez,\n" "Nyomj ''%2$s'' gombot, hogy visszatérj az emulációhoz." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Fő hangerő" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s Hangerő" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "Processzor túlhajtás %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s Képfrissítés" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s Fényerő" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s Kontraszt" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s Gamma" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s Vízszintes nyújtás" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s Vízszintes helyzet" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s Függőleges nyújtás" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s Függőleges helyzet" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "Lézerlemez '%1$s' vízszintes nyújtás" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "Lézerlemez '%1$s' vízszintes pozíció" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "Lézerlemez '%1$s' függőleges nyújtás" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "Lézerlemez '%1$s' függőleges pozíció" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Vektor villogás" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Minimális sugár szélesség" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Maximális sugár szélesség" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Sugár erősség mértéke" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Célkereszt skála %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Célkereszt kiegyenlítés %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Célkereszt skála X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Célkereszt skála Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Célkereszt kiegyenlítés X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Célkereszt kiegyenlítés Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**ui.ini mentése közben hiba történt**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**%s.ini mentése közben hiba történt**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -246,7 +246,7 @@ msgstr "" " Beállítás elmentve \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -255,8 +255,8 @@ msgstr "" "%s\n" " felvéve a Kedvencek listára." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -265,33 +265,33 @@ msgstr "" "%s\n" " eltávolítva a Kedvencek listáról." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d szoftver csomag )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Vezérlőprogram: \"%1$s\" szoftver lista " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Hang beállítások" @@ -319,7 +319,7 @@ msgstr "Felület testre szabása" msgid "Configure Directories" msgstr "Könyvtár beállítások" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[üres hely]" @@ -328,7 +328,7 @@ msgstr "[üres hely]" msgid "[create]" msgstr "[létrehozás]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[szoftver lista]" @@ -337,23 +337,23 @@ msgstr "[szoftver lista]" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Hozzáférési mód választás" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Csak olvasható" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Olvasható-írható" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "A kép beolvasása és mentése egy másik képbe" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "A kép beolvasása és mentése másikba" @@ -373,7 +373,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "Képek nagyítása a jobb panelen" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Csalások" @@ -399,7 +399,7 @@ msgstr "Kép beállítása háttérként" #: src/frontend/mame/ui/submenu.cpp:41 msgid "Skip BIOS selection menu" -msgstr "" +msgstr "BIOS választási menü kihagyása" #: src/frontend/mame/ui/submenu.cpp:42 msgid "Skip software parts selection menu" @@ -665,36 +665,36 @@ msgstr "Szinkronizált frissítés" msgid "Wait Vertical Sync" msgstr "V-sync-re várás" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "Be" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Ki" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Automata" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Vissza a géphez" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Kilépés" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Vissza az előző menübe" @@ -732,86 +732,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -906,6 +927,9 @@ msgid "" "\n" "There are working clones of this machine: %s" msgstr "" +"\n" +"\n" +"Ennek a gépnek vannak működő klónjai: %s" #: src/frontend/mame/ui/info.cpp:339 #, c-format @@ -996,28 +1020,28 @@ msgstr "Részlegesen támogatva" msgid "[empty]" msgstr "[üres]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[fájl kezelő]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Elem sorrend beállítása" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "Beállított sorrend: bejegyzések a következő sorrendben %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "rövid név" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "leírás" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[kompatibilitási lista]" @@ -1025,11 +1049,11 @@ msgstr "[kompatibilitási lista]" msgid "File Already Exists - Override?" msgstr "Fájl már lézeik - Felülírod?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "Nem" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Igen" @@ -1070,7 +1094,7 @@ msgstr "Természetes" msgid "Emulated" msgstr "Emulálva" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1087,189 +1111,358 @@ msgstr "Bekapcsolva" msgid "Disabled" msgstr "Kikapcsolva" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" -msgstr "" +msgstr "Kategória" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" -msgstr "" +msgstr "Gyártó" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" -msgstr "" +msgstr "Év" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "Év" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" +msgstr "Kiadó" + +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" -msgstr "" +msgstr "Eszköz fajtája" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" +msgstr "Szoftver lista" + +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Egyéni szűrő választás:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Utolsó szűrő eltávolítása" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Szűrő beállítás" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" -msgstr "" +msgstr "Fájl" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Szoftver használat" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Revízió:" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Alapra állítás" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1278,7 +1471,7 @@ msgstr "" "Játékidő: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1287,7 +1480,7 @@ msgstr "" "Játékidő: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1296,90 +1489,94 @@ msgstr "" "Kiosztott jegyek: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Érme %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Érme %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (zárolva)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Látható késés" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml mentve az ui mappába." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Név: Leírás:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt mentve az ui mappába." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Lista exportálása XML formátumba (mint -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" "Lista exportálása XML formátumba (mint -listxml, de belefoglalva az " "eszközöket)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Lista exportálása TXT formátumba (mint -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Vezérlőprogram" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Felvétel a Kedvencekhez" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Eltávolítás a kedvencekből" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (alap)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Beépülők" @@ -1391,30 +1588,48 @@ msgstr "Pszeudó terminálok" msgid "[failed]" msgstr "[sikertelen]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" #: src/frontend/mame/ui/slotopt.cpp:192 #, c-format msgid "%s [internal]" -msgstr "" +msgstr "%s [belső]" #: src/frontend/mame/ui/inputmap.cpp:38 msgid "User Interface" @@ -1430,7 +1645,7 @@ msgid "Other Controls" msgstr "Egyéb irányítók" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1442,27 +1657,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1541,7 +1756,7 @@ msgstr "" "információk végett." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Beállítási lehetőségek" @@ -1555,7 +1770,7 @@ msgid "Type name or select: (random)" msgstr "Név beírása vagy kiválasztás: (véletlenszerű)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1566,52 +1781,52 @@ msgid "Driver: %1$-.100s" msgstr "Illesztőprogram: %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "Összegezve: NEM MŰKÖDIK" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "Összegezve: Emulálatlan védelem" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "Összegezve: Működik" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Grafika: Hibás, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Grafika: Jó, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Hang: nincs beépítve" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Hang: Hibás" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Hang: Jó" @@ -1637,482 +1852,534 @@ msgid "Reload All" msgstr "Mind újratöltése" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROM" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "Felület" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Nyelv" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "Illusztrációk" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Minták" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Célkeresztek" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DAT" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INI fájlok" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DAT" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Pillanatképek" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Ikonok" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Pillanatképek" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Kezelő pult" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Játékgép" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Plakátok" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Címkép" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Befejezések" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "PCB-k" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "Matricák" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Kezelő pult" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Célkeresztek" +msgctxt "path-option" +msgid "PCBs" +msgstr "PCB-k" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Illusztrációk" +msgctxt "path-option" +msgid "Flyers" +msgstr "Plakátok" + +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Boss" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" -msgstr "Illusztrációk előnézete" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "Választás" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "Végkép" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "Hogyan" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Logók" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Eredmények" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Ellen" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Borítók" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Mappa beállítások" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Jelenlegi %1$s mappák" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Mappa váltás" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Mappa létrehozása" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Mappa eltávolítása" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "%1$s mappára váltás - Keresés: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "%1$s mappa létrehozása - Keresés: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Beállítás a TAB billentyűvel" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "%1$s mappa eltávolítása" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " SZÍNEK" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " TOLLAK" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Gép beállítások" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" -msgstr "" +msgstr "Romkészlet\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" -msgstr "" +msgstr "Év\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" -msgstr "" +msgstr "Gyártó\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" -msgstr "" +msgstr "Vezérlőprogram klónja ennek\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" -msgstr "" +msgstr "A vezérlőprogram Alap\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" -msgstr "" +msgstr "Összegezve\tNEM MŰKÖDIK\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" -msgstr "" +msgstr "Összegezve\tEmulálatlan védelem\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" -msgstr "" +msgstr "Összegezve\tMűködik\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" -msgstr "" +msgstr "Grafika\tHibás színek\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" -msgstr "" +msgstr "Grafika\tHibás\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" -msgstr "" +msgstr "Grafika\tJó\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" -msgstr "" +msgstr "Hang\tnincs beépítve\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" -msgstr "" +msgstr "Hang\tHibás\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" -msgstr "" +msgstr "Hang\tJó\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" -msgstr "" +msgstr "Kép igazítottság\tFüggőleges" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" -msgstr "" +msgstr "Kép igazítottság\tVízszintes" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d gép (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "Romkészlet: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "Rendszer: %1$-.100s" @@ -2126,29 +2393,29 @@ msgstr "Kiválasztási lista - Keresés: " msgid "Double click or press %1$s to select" msgstr "Dupla kattintás vagy %1$s megnyomása a kiválasztáshoz" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2168,212 +2435,247 @@ msgstr "Infó / kép elrejtése" msgid "Hide Both" msgstr "Mindkettő elrejtése" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Betűk" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Színek" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Nyelv" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Oldal panelek mutatása" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Egyedi felület beállításai" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "alap" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Felület betűkészlete" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Félkövér" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Dőlt" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Vonalak" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Infó szöveg mérete" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Felület betűkészleteinek beállítása" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "Minta szöveg - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Normál szöveg" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Választott szín" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Normál szöveg háttér" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Választott háttérszín" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Segédeszköz szín" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Klón" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Keret" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Háttér" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "Dipswitch" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Nem használható szín" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Csúszka színe" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Grafikai betekintő háttere" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Mouseover szín" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Mouseover háttér szín" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Mousedown szín" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Mousedown háttér szín" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Eredeti színek visszaállítása" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Felület színeinek beállítása" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "Dupla kattintás erre: %1$s a szín megváltoztatásához" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Menü előnézet" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Normál" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Segédeszköz" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Kiválasztva" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Mouseover" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" -msgstr "" +msgstr "ARGB beállítások" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Alpha" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Vörös" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Zöld" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Kék" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Választás a palettából" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Szín előnézet =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Fehér" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Ezüst" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Szürke" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Fekete" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Vörös" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Narancs" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Sárga" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Zöld" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Kék" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Ibolya" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2436,7 +2738,7 @@ msgstr "Kazetta irányítók" #: src/frontend/mame/ui/mainmenu.cpp:101 msgid "BIOS Selection" -msgstr "" +msgstr "BIOS választás" #: src/frontend/mame/ui/mainmenu.cpp:104 msgid "Slot Devices" @@ -2480,137 +2782,215 @@ msgid "Select New Machine" msgstr "Új gép választás" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Kezelő pult" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Pillanatképek" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "PCB" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "Plakát" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Illusztráció előnézet" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Boss" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Ellen" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "A játék végetért" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Hogyan" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Eredmények" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "Matrica" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Borítók" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Kedvencek felvétele vagy eltávolítása" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "A megjelenített lista exportálása fájlba" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "DAT nézet mutatása" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Szoftver rész választás:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "A szoftver a következő klónja: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "A szoftver alap" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Támogatás: Nem" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Támogatás: Részleges" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Támogatás: Igen" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "romkészlet: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "A vezérlőprogram a következő klónja: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "Romkészlet: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "A vezérlőprogram alap" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "A vezérlőprogram a következő klónja: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Képek" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Infók" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Használat" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Általános infók" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Hang" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Mintavételezés" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Külső minták használata" @@ -3198,7 +3578,7 @@ msgstr "" msgid "Gameinit" msgstr "Gameinit" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Történet" @@ -3218,17 +3598,73 @@ msgstr "" msgid "MAMEinfo" msgstr "" -#~ msgid "Backdrops" -#~ msgstr "Háttérfelület" +#~ msgid "Custom UI Settings" +#~ msgstr "Egyedi felület beállításai" + +#~ msgid "Software Usage" +#~ msgstr "Szoftver használat" + +#~ msgid "Usage" +#~ msgstr "Használat" + +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "Felület" + +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Nyelv" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Minták" -#~ msgid "Overlays" -#~ msgstr "Átfedők" +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Csalások" -#~ msgid "Bezels" -#~ msgstr "Keretek" +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "Címkép" -#~ msgid "CPanels" -#~ msgstr "Vezérlőpult" +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "Befejezések" + +#~ msgctxt "path-option" +#~ msgid "Artworks Preview" +#~ msgstr "Illusztrációk előnézete" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "Végkép" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Cabinets" +#~ msgstr "Játékgép" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Control Panels" +#~ msgstr "Kezelő pult" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "Címkép" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Befejezések" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Logos" +#~ msgstr "Logók" + +#~ msgid "Select" +#~ msgstr "Választás" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "romkészlet: %1$-.100s" #~ msgid "View" #~ msgstr "Nézet" @@ -3303,21 +3739,6 @@ msgstr "" #~ msgid "Artwork Crop" #~ msgstr "Illusztráció levágása" -#~ msgid "Use Backdrops" -#~ msgstr "Háttérfelületek használata" - -#~ msgid "Use Overlays" -#~ msgstr "Átfedők használata" - -#~ msgid "Use Bezels" -#~ msgstr "Keretek használata" - -#~ msgid "Use Control Panels" -#~ msgstr "Kezelő pultok használata" - -#~ msgid "Use Marquees" -#~ msgstr "Matricák használata" - #~ msgid "Bilinear snapshot" #~ msgstr "Bilineáris pillanatkép" @@ -3328,12 +3749,6 @@ msgstr "" #~ "A kiválasztott szoftver működéséhez hiányzik egy vagy több ROM illetve " #~ "CHD képfájl. Válassz másikat." -#~ msgid "Vertical" -#~ msgstr "Függőleges" - -#~ msgid "Horizontal" -#~ msgstr "Vízszintes" - #~ msgid "Unimplemented" #~ msgstr "Beépítetlen" @@ -3343,21 +3758,12 @@ msgstr "" #~ msgid "OK" #~ msgstr "Rendben" -#~ msgid "Gfx: %s, Sound: %s" -#~ msgstr "Grafika: %s, Hang: %s" - #~ msgid "Audit in progress..." #~ msgstr "Ellenőrzés folyamatban..." #~ msgid "Extra INIs" #~ msgstr "Extra INI fájlok" -#~ msgid " ^!File" -#~ msgstr " ^!Fájl" - -#~ msgid " ^!Category" -#~ msgstr " ^!Kategória" - #~ msgid "%1$s (%2$s - %3$s) - " #~ msgstr "%1$s (%2$s - %3$s) - " @@ -3373,21 +3779,6 @@ msgstr "" #~ msgid "Other filter" #~ msgstr "Egyéb szűrő" -#~ msgid "^!Manufacturer" -#~ msgstr "^!Gyártó" - -#~ msgid "^!Year" -#~ msgstr "^!Év" - -#~ msgid "^!Publisher" -#~ msgstr "^!Kiadó" - -#~ msgid "^!Software List" -#~ msgstr "^!Szoftver lista" - -#~ msgid "^!Device type" -#~ msgstr "^!Eszköz fajtája" - #~ msgid "^!Region" #~ msgstr "^!Régió" @@ -3397,39 +3788,15 @@ msgstr "" #~ msgid "Region: %1$s -" #~ msgstr "Régió: %1$s -" -#~ msgid "Publisher: %1$s -" -#~ msgstr "Kiadó: %1$s -" - -#~ msgid "Year: %1$s -" -#~ msgstr "Év: %1$s -" - -#~ msgid "Software List: %1$s -" -#~ msgstr "Szoftver lista: %1$s -" - #~ msgid "Device type: %1$s -" #~ msgstr "Eszköz típus: %1$s -" #~ msgid "%s Search: %s_" #~ msgstr "%s Keresés: %s_" -#~ msgid "Bios selection:" -#~ msgstr "Bios választás:" - -#~ msgid "Skip bios selection menu" -#~ msgstr "Bios választási menü kihagyása" - -#~ msgid "Bios" -#~ msgstr "Bios" - #~ msgid "This machine has no bios." #~ msgstr "Ez a gép nem rendelkezik bios-szal." -#~ msgid "Bios Selection" -#~ msgstr "Bios választás" - -#~ msgid " - ARGB Settings" -#~ msgstr " - ARGB beállítások" - #~ msgid "Software History" #~ msgstr "Szoftver történet" @@ -3475,15 +3842,6 @@ msgstr "" #~ "hibátlanul játszani ezzel a géppel.\n" #~ msgid "" -#~ "\n" -#~ "\n" -#~ "There are working clones of this machine: " -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Ennek a gépnek vannak működő klónjai: " - -#~ msgid "" #~ "The selected machine is missing one or more required ROM or CHD images. " #~ "Please select a different machine.\n" #~ "\n" @@ -3494,51 +3852,6 @@ msgstr "" #~ "\n" #~ "Press any key to continue." -#~ msgid "Romset: %1$-.100s\n" -#~ msgstr "Romkészlet: %1$-.100s\n" - -#~ msgid "Year: %1$s\n" -#~ msgstr "Év: %1$s\n" - -#~ msgid "Manufacturer: %1$-.100s\n" -#~ msgstr "Gyártó: %1$-.100s\n" - -#~ msgid "Driver is Clone of: %1$-.100s\n" -#~ msgstr "Vezérlőprogram klónja ennek: %1$-.100s\n" - -#~ msgid "Driver is Parent\n" -#~ msgstr "A vezérlőprogram Alap\n" - -#~ msgid "Overall: NOT WORKING\n" -#~ msgstr "Összegezve: NEM MŰKÖDIK\n" - -#~ msgid "Overall: Unemulated Protection\n" -#~ msgstr "Összegezve: Emulálatlan védelem\n" - -#~ msgid "Overall: Working\n" -#~ msgstr "Összegezve: Működik\n" - -#~ msgid "Graphics: Imperfect Colors\n" -#~ msgstr "Grafika: Hibás színek\n" - -#~ msgid "Graphics: Imperfect\n" -#~ msgstr "Grafika: Hibás\n" - -#~ msgid "Graphics: OK\n" -#~ msgstr "Grafika: Jó\n" - -#~ msgid "Sound: Unimplemented\n" -#~ msgstr "Hang: nincs beépítve\n" - -#~ msgid "Sound: Imperfect\n" -#~ msgstr "Hang: Hibás\n" - -#~ msgid "Sound: OK\n" -#~ msgstr "Hang: Jó\n" - -#~ msgid "Driver is Skeleton: %1$s\n" -#~ msgstr "A vezérlőprogram Skeleton: %1$s\n" - #~ msgid "Game is Mechanical: %1$s\n" #~ msgstr "A játék mechanikus: %1$s\n" @@ -3557,9 +3870,6 @@ msgstr "" #~ msgid "Support Save: %1$s\n" #~ msgstr "Támogatott mentés: %1$s\n" -#~ msgid "Screen Orientation: %1$s\n" -#~ msgstr "Kép igazítottság: %1$s\n" - #~ msgid "Requires CHD: %1$s\n" #~ msgstr "Szükséges CHD: %1$s\n" @@ -3599,9 +3909,6 @@ msgstr "" #~ "\n" #~ "Nyomj egy gombot a folytatáshoz." -#~ msgid " [internal]" -#~ msgstr " [belső]" - #~ msgid "DATs info" #~ msgstr "DAT infó" diff --git a/language/Indonesian/strings.po b/language/Indonesian/strings.po index deca891a3b5..1ce792e41cc 100644 --- a/language/Indonesian/strings.po +++ b/language/Indonesian/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -17,32 +17,32 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -51,233 +51,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -305,7 +305,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -314,7 +314,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -323,23 +323,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -359,7 +359,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -651,36 +651,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -718,86 +718,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -961,28 +982,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -990,11 +1011,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1035,7 +1056,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1052,291 +1073,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1348,23 +1542,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1387,7 +1599,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1399,27 +1611,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1492,7 +1704,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1506,7 +1718,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1517,52 +1729,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1586,482 +1798,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2075,29 +2339,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2117,211 +2381,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2428,137 +2727,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3146,7 +3523,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Italian/strings.po b/language/Italian/strings.po index 44ec1b5fa30..c8229d9159a 100644 --- a/language/Italian/strings.po +++ b/language/Italian/strings.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2017-08-30 09:37+0200\n" "Last-Translator: theheroGAC\n" "Language-Team: MAME Language Team\n" @@ -17,7 +17,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.0.3\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -27,26 +27,26 @@ msgstr "" "\n" "Premi un tasto per proseguire" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" "Questo driver richiede software caricato nel(i) dispositivo(i) seguente(i): " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -59,185 +59,185 @@ msgstr "" "Premi ''%1$s'' per uscire,\n" "Premi ''%2$s'' per contrinuare l'emulazione." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Volume Principale" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s Volume" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "Overclock CPU %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "Overclock %1$s suono" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s Frequenza di aggiornamento" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s Luminosità" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s Contrasto" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s Gamma" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s Allungamento Orizzontale" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s Posizione Orizzontale" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s Allungamento Verticale" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s Posizione Verticale" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "Laserdisc '%1$s' Allungamento Orizzontale" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "Laserdisc '%1$s' Posizione Orizzontale" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "Laserdisc '%1$s' Allungamento Verticale" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "Laserdisc '%1$s' Posizione Verticale" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Sfarfallio Vettoriale" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Larghezza Minima del Raggio" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Larghezza Massima del Raggio" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Peso intensità del Raggio" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Scala del Puntatore %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Offset del Puntatore %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Scala del Puntatore X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Scala del Puntatore Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Offset del Puntatore X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Offset del Puntatore Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**Errore nel salvataggio del file ui.ini**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**Errore nel salvataggio del file %s.ini**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -247,7 +247,7 @@ msgstr "" " Configurazione salvata \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -256,8 +256,8 @@ msgstr "" "%s\n" " aggiunto ai preferiti." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -266,33 +266,33 @@ msgstr "" "%s\n" " rimosso dai preferiti." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d pacchetti software )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Driver: \"%1$s\" lista software " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - Cerca: %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "Cerca: %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Opzioni Audio" @@ -320,7 +320,7 @@ msgstr "Personalizza UI" msgid "Configure Directories" msgstr "Configura Cartelle" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[slot vuoto]" @@ -329,7 +329,7 @@ msgstr "[slot vuoto]" msgid "[create]" msgstr "[crea]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[lista software]" @@ -338,23 +338,23 @@ msgstr "[lista software]" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Selezione modalità di accesso" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Sola-Lettura" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Lettura-Scrittura" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Leggi da questo file, scrivi su un altro" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Leggi da questo file, scrivi su diff" @@ -374,7 +374,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "Ingrandisci immagini nel pannello di destra" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Cheat" @@ -666,36 +666,36 @@ msgstr "Aggiornamento Sincronizzato" msgid "Wait Vertical Sync" msgstr "Attendi la Sincronizzazione Verticale" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "Attivo" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Non Attivo" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Auto" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Ritorna alla Macchina" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Esci" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Torna al Menu Precedente" @@ -733,86 +733,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "protezione" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "temporizzazione" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "grafica" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "tavolozza colore" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "audio" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "camera" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "microfono" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "controlli" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "tastiera" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "mouse" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "disco" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "stampante" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "LAN" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "WAN" @@ -1000,28 +1021,28 @@ msgstr "Parzialmente supportato" msgid "[empty]" msgstr "[vuoto]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[gestore file]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Cambia Ordinamento Opzioni" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "Ordinamento Cambiato: Opzioni ordinate ora per %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "nome breve" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "descrizione" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[lista compatibile]" @@ -1029,11 +1050,11 @@ msgstr "[lista compatibile]" msgid "File Already Exists - Override?" msgstr "File Già Esistente - Sovrascrivo?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "No" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Si" @@ -1074,7 +1095,7 @@ msgstr "Naturale" msgid "Emulated" msgstr "Emulata" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1091,189 +1112,358 @@ msgstr "Abilitato" msgid "Disabled" msgstr "Disabilitato" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "Non filtrato" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "Disponibile" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "Non disponibile" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "Funziona" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "Non Funziona" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "Meccanico" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "Non Meccanico" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "Categoria" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "Preferiti" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "BIOS" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "Nessun BIOS" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "Genitori" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "Cloni" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "Produttore" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "Anno" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "Salvataggio Supportato" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "Salvataggio non Supportato" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "CHD Richiesto" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "Nessun CHD Richiesto" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "Schermata Verticale" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "Schermata Orizzontale" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "Filtro Personalizzato" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "Non filtrato" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "Disponibile" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "Non disponibile" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "Preferiti" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "Genitori" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "Cloni" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "Anno" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "Editore" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "Supportato" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "Parzialmente Supportato" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "Non supportato" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "Regione di Rilascio" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "Tipo Dispositivo" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "Lista Software" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "Filtro Personalizzato" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "<imposta filtri>" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Seleziona filtro personalizzato:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "Filtro %1$u" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Rimuovi ultimo filtro" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Aggiungi filtro" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "Seleziona categoria:" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "[nessun file INI di categoria]" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "[nessun gruppo nel file INI]" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "Nessun file INI della categoria trovata" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "File" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "Nessun gruppo trovato nel file di categoria" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "Gruppo" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "Cloni inclusi" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Utilizzo Software" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Revisione: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Azzera" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1282,7 +1472,7 @@ msgstr "" "Tempo di utilizzo: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1291,7 +1481,7 @@ msgstr "" "Tempo di utilizzo: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1300,88 +1490,92 @@ msgstr "" "Biglietti emessi: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Monete %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Monete %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (bloccati)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Ritardo Visibilità" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml salvato nella cartella UI." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Nome: Descrizione:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt salvato nella cartella UI." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Esporta lista in formato XML (come -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "Esporta lista in formato XML (come -listxml, ma escludendo i device)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Esporta lista in formato TXT (come -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Driver" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "Questa macchina non ha BIOS." -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Aggiungi ai Preferiti" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Rimuovi dai Preferiti" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "Salva Configurazione Macchina" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (predefinito)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Plugin" @@ -1393,23 +1587,41 @@ msgstr "Pseudo terminali" msgid "[failed]" msgstr "[fallito]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "Carica Stato" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "Salva Stato" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1432,7 +1644,7 @@ msgid "Other Controls" msgstr "Altri Controlli" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1444,27 +1656,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1546,7 +1758,7 @@ msgstr "" "config.txt nella cartella docs per le informazioni sulla configurazine %2$s." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Configura Opzioni" @@ -1560,7 +1772,7 @@ msgid "Type name or select: (random)" msgstr "Digita il nome o seleziona: (casuale)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s,%2$-.100s" @@ -1571,52 +1783,52 @@ msgid "Driver: %1$-.100s" msgstr "Driver:%1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "Complessivamente: NON FUNZIONANTE" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "Complessivamente: Protezione Non Emulata" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "Complessivamente: Funzionante" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "Grafica: Non implementata, " #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Grafica: Non Perfetta, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Grafica: OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "Suoni: Nessuno" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Audio: Non Implementato" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Audio: Non Perfetto" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Audio: OK" @@ -1642,482 +1854,534 @@ msgid "Reload All" msgstr "Ricarica Tutto" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROM" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "Programma Multimediale" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "UI" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Lingua" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "Disegni" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Sample" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Puntatori" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DAT" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INI" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DAT" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "Categoria INI" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Istantanee" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Icone" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Istantanee" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Pannelli di controllo" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Cabinati" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Volantini" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Titoli" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Finali" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "PCB" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "Tendoni" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Pannelli di controllo" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Puntatori" +msgctxt "path-option" +msgid "PCBs" +msgstr "PCB" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Disegni" +msgctxt "path-option" +msgid "Flyers" +msgstr "Volantini" + +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Boss" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" msgstr "Anteprima Disegni" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "Seleziona" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "GameOver" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "Come Fare" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Logo" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Punteggi" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Contro" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Copertine" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Configura Cartelle" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Cartella Corrente %1$s" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Cambia Cartella" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Aggiungi Cartella" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Rimuovi Cartella" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "Cambia Cartella %1$s - Cerca: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "Aggiungi Cartella %1$s - Cerca: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Premi TAB per impostare" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "Rimuovi Cartella %1$sr" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " COLORI" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " PEN" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Configura Macchina" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "Set di rom\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "Anno\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "Produttore\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "Il Driver è un Clone di\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "Il Driver è un Parent\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "Controlli Analogici\tSì\n" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "Input di Tastiera\tSì\n" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "Complessivamente\tNON FUNZIONANTE\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "Complessivamente\tProtezione Non Emulata\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "Complessivamente\tFunzionante\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "Grafica\tNon implementata\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "Grafica\tColori Errati\n" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "Grafica\tColori Non Perfetti\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "Grafica\tNon Perfetta\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "Grafica\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "Suoni\tNessuno\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "Audio\tNon Implementato\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "Audio\tNon Perfetto\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "Audio\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "Camera\tNon implementata\n" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "Camera\tImperfetta\n" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "Microfono\tNon implementato\n" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "Microfono\tImperfetto\n" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "Controlli\tNon implementati\n" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "Controlli\tImperfetti\n" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "Tastiera\tNon implementata\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "Tastiera\tImperfetta\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "Mouse\tNon implementato\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "Mouse\tImperfetto\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "Disco\tNon implementato\n" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "Disco\tImperfetto\n" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "Stampante\tNon implementata\n" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "Stampante\tImperfetta\n" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "LAN\tNon implementata\n" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "LAN\tImperfetta\n" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "WAN\tNon implementata\n" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "WAN\tImperfetta\n" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "Temporizzazione\tNon implementata\n" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "Temporizzazione\tImperfetta\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "Richiede Artwork\tSi\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "Richiede Artwork\tNo\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "Richiede Artwork Cliccabile\tSi\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "Richiede Artwork Cliccabile\tNo\n" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "Supporto Cocktail\tNo\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "Supporto Salvataggio\tSi\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "Supporto Salvataggio\tNo\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" -msgstr "" +msgstr "Orientamento Schermo\tVerticale\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" -msgstr "" +msgstr "Orientamento Schermo\tOrizzontale\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "Richiede CHD\tSi\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "Richiede CHD\tNo\n" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d macchine (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "Set di Rom:%1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "Sistema: %1$-.100s" @@ -2131,22 +2395,22 @@ msgstr "Lista Selezione - Cerca: " msgid "Double click or press %1$s to select" msgstr "Doppio click o premi %1$s per selezionare" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "Verifico le ROMs per %1$u le macchine marcate come non disponibili?" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "Verifico le ROMs per tutte %1$u le macchine?" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(i risultati verranno salvati su %1$s)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" @@ -2155,7 +2419,7 @@ msgstr "" "Verifica delle ROMs per la macchina %2$u di %3$u...\n" "%1$s" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "Avvia Verifica" @@ -2175,212 +2439,247 @@ msgstr "Nascondi Info/Immagine" msgid "Hide Both" msgstr "Nascondi Entrambi" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Font" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Colori" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Lingua" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Mostra pannelli laterali" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Impostazioni UI Personalizzate" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "predefinito" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Font UI" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Grassetto" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Corsivo" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Linee" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Dimensione testo info" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Impostazioni Font UI" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "Testo di esempio - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Testo normale" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Colore selezionato" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Sfondo testo normale" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Colore sfondo selezionato" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Colore opzione menu" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Clone" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Bordo" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Sfondo" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "Dip-Switch" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Colore non disponibile" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Colore cursore" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Sfondo visualizzatore Gfx" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Colore mouse over" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Colore sfondo mouse over" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Colore mouse down" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Colore sfondo mouse down" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Ripristina colori originali" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Impostazione Colori UI" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "Doppio click o premi %1$s per cambiare colore" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Anteprima Menu" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Normale" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Opzione menu" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Selezionato" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Mouse Sopra" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "Impostazioni ARGB" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Alfa" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Rosso" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Verde" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Blu" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Seleziona dalla tavolozza" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Anteprima colore =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Bianco" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Argento" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Grigio" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Nero" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Rosso" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Arancio" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Giallo" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Verde" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Blu" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Viola" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2487,137 +2786,215 @@ msgid "Select New Machine" msgstr "Seleziona Nuova Macchina" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Pannelli di controllo" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Istantanee" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "Pannello di controllo" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "PCB" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "Volantino" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Anteprima Artwork" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Boss" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "Logo" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Control" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Game Over" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Come Fare" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Punteggi" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "Tendone" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Copertine" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Aggiungi o rimuovi preferiti" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Esporta la lista visualizzata in un file" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "Mostra viste DAT" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Selezione parte software:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "Selezione BIOS:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "Il software è Clone di: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "Il software è parent" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Supportato: No" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Supportato: Parzialmente" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Supportato: Si" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "set di rom:%1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "Il Driver è un clone di: %-.100s" +msgid "Romset: %1$-.100s" +msgstr "Set di Rom:%1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "Il Driver è un parent" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "Il Driver è un clone di: %-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Immagini" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Informazioni" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "Premi un tasto per continuare." -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Utilizzo" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Informazioni Generali" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Audio" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Frequenza di Campionamento" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Usa Sample Aggiuntivi" @@ -3207,7 +3584,7 @@ msgstr "Punteggio MARP" msgid "Gameinit" msgstr "Inizializza Gioco" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Storico" @@ -3227,17 +3604,65 @@ msgstr "Info MESS" msgid "MAMEinfo" msgstr "Info MAME" -#~ msgid "Backdrops" -#~ msgstr "Sfondi (Backdrops)" +#~ msgid "Custom UI Settings" +#~ msgstr "Impostazioni UI Personalizzate" + +#~ msgid "Software Usage" +#~ msgstr "Utilizzo Software" + +#~ msgid "Usage" +#~ msgstr "Utilizzo" + +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "UI" + +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Lingua" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Sample" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Cheat" + +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "Titoli" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "Finali" + +#~ msgctxt "path-option" +#~ msgid "Artworks Preview" +#~ msgstr "Anteprima Disegni" -#~ msgid "Overlays" -#~ msgstr "Sovrapposizioni (Overlays)" +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "GameOver" -#~ msgid "Bezels" -#~ msgstr "Cornici (Bezels)" +#~ msgctxt "selmenu-artwork" +#~ msgid "Cabinets" +#~ msgstr "Cabinati" -#~ msgid "CPanels" -#~ msgstr "Pannello Comandi (CPanels)" +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "Titoli" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Finali" + +#~ msgid "Select" +#~ msgstr "Seleziona" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "set di rom:%1$-.100s" #~ msgid "View" #~ msgstr "Vista" @@ -3333,21 +3758,6 @@ msgstr "Info MAME" #~ msgid "Artwork Crop" #~ msgstr "Taglia Disegno" -#~ msgid "Use Backdrops" -#~ msgstr "Utilizza i Fondali" - -#~ msgid "Use Overlays" -#~ msgstr "Utilizza le Sovrapposizioni" - -#~ msgid "Use Bezels" -#~ msgstr "Utilizza le Smussature" - -#~ msgid "Use Control Panels" -#~ msgstr "Utilizza i pannelli di controllo" - -#~ msgid "Use Marquees" -#~ msgstr "Utilizza i Marquees" - #~ msgid "Bilinear snapshot" #~ msgstr "Istantanea Bilineare" @@ -3402,15 +3812,6 @@ msgstr "Info MAME" #~ msgid "Support Save\t%1$s\n" #~ msgstr "Salvataggio Supportato\t%1$s\n" -#~ msgid "Screen Orientation\t%1$s\n" -#~ msgstr "Orientamento Schermo\t%1$s\n" - -#~ msgid "Vertical" -#~ msgstr "Verticale" - -#~ msgid "Horizontal" -#~ msgstr "Orizzontale" - #~ msgid "Requires CHD\t%1$s\n" #~ msgstr "Richiede CHD\t%1$s\n" @@ -3445,9 +3846,6 @@ msgstr "Info MAME" #~ msgid "OK" #~ msgstr "OK" -#~ msgid "Gfx: %s, Sound: %s" -#~ msgstr "Gfx: %s, Audio: %s" - #~ msgid "Audit in progress..." #~ msgstr "Audit in corso..." @@ -3460,25 +3858,9 @@ msgstr "Info MAME" #~ msgid "Other filter" #~ msgstr "Altri filtri" -#~ msgid "^!Region" -#~ msgstr "^!Regione" - -#~ msgid "^!Setup custom filter" -#~ msgstr "^!Configura filtri personali" - -#~ msgid "Region: %1$s -" -#~ msgstr "Regione: %1$s -" - #~ msgid "Software History" #~ msgstr "History Software" -#~ msgid "The machine lacks sound.\n" -#~ msgstr "La macchina non ha audio.\n" - -#~ msgid "The machine has protection which isn't fully emulated.\n" -#~ msgstr "" -#~ "La macchina ha delle protezioni che non sono emulate completamente.\n" - #~ msgid "" #~ "\n" #~ "Certain elements of this machine cannot be emulated as it requires actual " diff --git a/language/Japanese/strings.po b/language/Japanese/strings.po index 61ee82f2fa1..e2f37efb692 100644 --- a/language/Japanese/strings.po +++ b/language/Japanese/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-23 01:39+0900\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -18,7 +18,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 1.6.11\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -28,25 +28,25 @@ msgstr "" "\n" "進めるには、何かキーを押してください。" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "このドライバは以下のデバイスでイメージの読み込みが必要です:" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -59,185 +59,185 @@ msgstr "" "「%1$s」で終了\n" "「%2$s」でエミュレーションに戻る" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "マスター音量" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$sの音量" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "CPU %1$sのオーバークロック" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "サウンド%1$sのオーバークロック" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$sのリフレッシュレート" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$sの輝度" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$sのコントラスト" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$sのガンマ" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s 横方向の拡大" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s 横方向の位置" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s 縦方向の拡大" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s 縦方向の位置" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "レーザーディスク '%1$s' 横方向の拡大" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "レーザーディスク '%1$s' 横方向の位置" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "レーザーディスク '%1$s' 縦方向の拡大" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "レーザーディスク '%1$s' 縦方向の位置" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "ベクターのちらつき" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "ビーム幅(最小)" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "ビーム幅(最大)" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "ビーム強度比重" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "照準の大きさ %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "照準のオフセット %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "照準の大きさ X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "照準の大きさ Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "照準のオフセット X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "照準のオフセット Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "*** ui.iniの保存エラー ***" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "*** %s.iniの保存エラー ***" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -247,7 +247,7 @@ msgstr "" " 設定を保存しました \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -256,8 +256,8 @@ msgstr "" "「%s」を\n" "お気に入りに追加しました。" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -266,33 +266,33 @@ msgstr "" "「%s」を\n" "お気に入りから削除しました。" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d ソフトウェアパッケージ )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "ドライバ:「%1$s」 ソフトウェアリスト" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s:%2$s〜検索:%3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "検索:%1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "サウンド設定" @@ -320,7 +320,7 @@ msgstr "UIをカスタマイズする" msgid "Configure Directories" msgstr "フォルダ設定" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "〔空のスロット〕" @@ -329,7 +329,7 @@ msgstr "〔空のスロット〕" msgid "[create]" msgstr "〔作成〕" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "〔ソフトウェアリスト〕" @@ -338,23 +338,23 @@ msgstr "〔ソフトウェアリスト〕" msgid "Error accessing %s" msgstr "%sのアクセスエラー" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "アクセスモードの選択" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "読み取り専用" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "読み取り/書き込み" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "このイメージから読み取り、別のイメージに書き込む" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "このイメージから読み取り、差分(diff)に書き込む" @@ -374,9 +374,9 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "右パネルの画像を拡大する" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" -msgstr "チートファイル" +msgstr "チート" #: src/frontend/mame/ui/submenu.cpp:36 msgid "Show mouse pointer" @@ -666,36 +666,36 @@ msgstr "リフレッシュを同期" msgid "Wait Vertical Sync" msgstr "V-Syncを待つ" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "オン" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "オフ" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "自動" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "マシンに戻る" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "終了" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "前のメニューに戻る" @@ -733,86 +733,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "プロテクト" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "タイミング" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "グラフィック" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "色パレット" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "サウンド" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "カメラ" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "マイクロフォン" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "コントロール" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "キーボード" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "マウス" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "ディスク" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "プリンター" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "LAN" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "WAN" @@ -1001,28 +1022,28 @@ msgstr "部分的に対応" msgid "[empty]" msgstr "〔空〕" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "【ファイルマネージャ】" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "項目の並び順の切り替え" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "並び順を切り替え: 一覧は現在 %s 順" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "ソフト" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "名前" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "【互換リスト】" @@ -1030,11 +1051,11 @@ msgstr "【互換リスト】" msgid "File Already Exists - Override?" msgstr "ファイルが存在します-上書きしますか?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "いいえ" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "はい" @@ -1075,7 +1096,7 @@ msgstr "ナチュラル" msgid "Emulated" msgstr "エミュレート" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1092,189 +1113,358 @@ msgstr "有効" msgid "Disabled" msgstr "無効" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "開発元" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "発売日" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "バージョン" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "フィルタ無し" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "存在する" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "存在しない" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "動作可" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "動作不可" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "機械仕掛け" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "機械仕掛け以外" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "カテゴリ" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "お気に入り" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" -msgstr "BIOS" +msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "BIOS以外" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "親セット" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "クローン" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "製造元" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "年度" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "セーブ対応" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "セーブ非対応" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "CHDが必要" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "CHDが不要" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "縦画面" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "横画面" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "カスタムフィルタ" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "フィルタ無し" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "存在する" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "存在しない" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "お気に入り" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "親セット" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "クローン" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "年度" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "発売元" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "開発元" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "対応" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "一部対応" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "非対応" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "リリース地域" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "デバイスタイプ" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "ソフトウェアリスト" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "カスタムフィルタ" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "〔フィルタを設定する〕" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "カスタムフィルタ選択:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "フィルタ%1$u" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "最後のフィルタを削除" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "フィルタを追加" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "カテゴリを選択:" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "[カテゴリINIファイルがありません]" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "[INIファイルにグループが見つかりません]" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "カテゴリINIファイルがありません" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "ファイル" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "カテゴリファイルにグループが見つかりません" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "グループ" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "クローンを含める" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "ソフトウェアの使い方" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "リビジョン:" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "リセット" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1283,7 +1473,7 @@ msgstr "" "稼働時間:%1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1292,7 +1482,7 @@ msgstr "" "稼働時間:%1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1301,88 +1491,92 @@ msgstr "" "チケット発行: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "コイン%1$c:NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "コイン%1$c:%2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "(ロック)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "表示する長さ" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xmlをuiフォルダーに保存しました。" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "ROMセット: 名前:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txtをuiフォルダーに保存しました。" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "XML形式でリストを出力(-listxml同様)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "XML形式でリストを出力(-listxml同様、デバイスを除く)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "TXT形式でリストを出力(-listfull同様)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "ドライバ" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "このマシンにはBIOSがありません。" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "お気に入りに追加" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "お気に入りから削除" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "(デフォルト)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "プラグイン" @@ -1394,23 +1588,41 @@ msgstr "擬似ターミナル" msgid "[failed]" msgstr "【失敗】" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "状態をロード" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "状態をセーブ" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1433,7 +1645,7 @@ msgid "Other Controls" msgstr "その他のコントロール" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1445,27 +1657,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1547,7 +1759,7 @@ msgstr "" "ファイルをご覧ください。" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "オプションの設定" @@ -1561,7 +1773,7 @@ msgid "Type name or select: (random)" msgstr "名前を入力もしくは選択: (ランダム)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s、%2$-.100s" @@ -1572,52 +1784,52 @@ msgid "Driver: %1$-.100s" msgstr "ドライバ:%1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "概略:動作不可" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "概略:プロテクトが未エミュレート" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "概略:動作可" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "グラフィック:未実装 " #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "グラフィック:不完全 " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "グラフィック:正常 " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "サウンド:なし" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "サウンド:未実装" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "サウンド:不完全" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "サウンド:正常" @@ -1643,466 +1855,523 @@ msgid "Reload All" msgstr "全て再読み込み" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROMファイル" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "ソフトウェア メディア" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "UIファイル" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "言語" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "アートワークファイル" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "サンプルファイル" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "照準画像ファイル" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DATファイル" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "チートファイル" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INIファイル" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DATファイル" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "カテゴリ INI" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "スクリーンショット" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "アイコンファイル" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "スクリーンショット" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "操作パネル画像" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "筐体画像ファイル" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "フライヤー画像" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "タイトル画像" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "終了画像" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "基板画像" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "マーキー画像" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "操作パネル画像" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "照準画像ファイル" +msgctxt "path-option" +msgid "PCBs" +msgstr "基板画像" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "アートワークファイル" +msgctxt "path-option" +msgid "Flyers" +msgstr "フライヤー画像" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "タイトル画像" + +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "ボス画像ファイル" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" msgstr "アートワークのプレビュー" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "選択" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "ゲームオーバー" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "HOWTO" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "ロゴ" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "スコア" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "バーサス" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "カバー" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "フォルダ設定" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "現在の%1$sフォルダ" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "フォルダを変更" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "フォルダを追加" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "フォルダを削除" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "%1$sフォルダを変更 〜 検索:%2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "%1$sフォルダを追加 〜 検索:%2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "TABキーを押して設定" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "%1$sフォルダを削除" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " 色" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " ペン" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "マシンの設定" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "ROMセット\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "年度\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "製造元\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "次のクローンのドライバ\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "親セットのドライバ\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "アナログコントロール\tはい\n" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "キーボード入力\tはい\n" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "概略\t動作不可\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "概略\tプロテクトが未エミュレート\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "概略\t動作可\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "グラフィック\t未実装\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "グラフィック\t色の誤り\n" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "グラフィック\t色が不完全\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "グラフィック\t不完全\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "グラフィック\t正常\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "グラフィック\tなし\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "サウンド\t未実装\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "サウンド\t不完全\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "サウンド\t正常\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "カメラ\t未実装\n" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "カメラ\t不完全\n" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "マクロフォン\t未実装\n" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "マクロフォン\t不完全\n" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "コントロール\t未実装\n" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "コントロール\t不完全\n" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "キーボード\t未実装\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "キーボード\t不完全\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "マウス\t未実装\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "マウス\t不完全\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "ディスク\t未実装\n" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "ディスク\t不完全\n" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "プリンター\t未実装\n" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "プリンター\t不完全\n" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "LAN\t未実装\n" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "LAN\t不完全\n" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "WAN\t未実装\n" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "WAN\t不完全\n" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "タイミング\t未実装\n" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "タイミング\t不完全\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "機械仕掛けのマシン\tはい\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "機械仕掛けのマシン\tいいえ\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "アートワークが必要\tはい\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "アートワークが必要\tいいえ\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "クリック可のアートワークが必要\tはい\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "クリック可のアートワークが必要\tいいえ\n" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "カクテルモード対応\tいいえ\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "BIOSドライバ\tはい\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "BIOSドライバ\tいいえ\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "セーブ対応\tはい\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "セーブ対応\tいいえ\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "画面の向き\t縦\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "画面の向き\t横\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "CHDが必要\tはい\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "CHDが必要\tいいえ\n" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "ROM検証結果\t正常\n" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "ROM検証結果\t異常\n" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "サンプル検証結果\t不要\n" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "サンプル検証結果\t正常\n" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "サンプル検証結果\t異常\n" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" @@ -2110,17 +2379,12 @@ msgstr "" "ROM検証\t無効\n" "サンプル検証\t無効\n" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d マシン (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "ROMセット:%1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "システム:%1$-.100s" @@ -2134,22 +2398,22 @@ msgstr "選択リスト - 検索:" msgid "Double click or press %1$s to select" msgstr "%1$sを押すかダブルクリックで選択してください" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "存在しないに分類された%1$uマシンのROMを検査しますか?" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "全%1$uマシンのROMを検査しますか?" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(結果は%1$sに保存されます)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" @@ -2158,7 +2422,7 @@ msgstr "" "マシン%2$u/%3$uのROMを検査中...\n" "%1$s" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "検査を開始" @@ -2178,212 +2442,247 @@ msgstr "情報・画像を非表示にする" msgid "Hide Both" msgstr "両方を非表示にする" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "フォント" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "色" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "言語" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "サイドパネルを表示" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "カスタムUI設定" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "デフォルト" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "UIフォント" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "太字" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "イタリック" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "行数" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "情報のテキストサイズ" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "UIフォント設定" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "サンプルテキスト - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "通常のテキスト" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "選択色" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "通常テキストの背景" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "選択済テキストの背景" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "サブ項目の色" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "クローン" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "枠線" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "背景" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "DIPスイッチ" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "動作不可の色" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "スライダの色" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "グラフィックビューアの背景" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "マウスオーバー時の色" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "マウスオーバー時の背景色" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "マウスダウン時の色" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "マウスダウン時の背景色" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "元の色に戻す" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "UIの色設定" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "色の値を変更するには%1$sを押すかダブルクリックしてください" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "メニューのプレビュー" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "通常項目" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "サブ項目" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "選択済の項目" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "マウスオーバー" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "ARGB設定" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "アルファ" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "赤" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "緑" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "青" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "パレットから選ぶ" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "色のプレビュー =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "白" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "銀色" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "灰色" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "黒" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "赤" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "オレンジ" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "黄" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "緑" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "青" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "紫" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2490,137 +2789,215 @@ msgid "Select New Machine" msgstr "新しいマシンを選択" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "スクリーンショット" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "筐体画像" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" msgstr "操作パネル画像" +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "基板画像" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "フライヤー画像" + #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "タイトル画像" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "アートワークのプレビュー" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "ボス画像" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "ロゴ" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "バーサス" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "ゲームオーバー" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "HOWTO" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "スコア" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "マーキー画像" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "カバー" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "お気に入りに追加または削除" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "表示されているリストをファイルに出力" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "DATビューを表示" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "選択中のソフトウェアパーツ:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "BIOS選択:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "次のクローンのソフトウェア:%1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "親セットのソフトウェア" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "対応状況:いいえ" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "対応状況:部分的" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "対応状況:はい" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "ソフト:%1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "次のクローンのドライバ:%1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "ROMセット:%1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "親セットのドライバ" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "次のクローンのドライバ:%1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "画像" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "情報" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "進めるには、何かキーを押してください。" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "使い方" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "一般情報" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "サウンド" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "サンプルレート" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "外部サンプル使用" @@ -2674,12 +3051,12 @@ msgstr " 画面 '%1$s': ベクター\n" #: src/frontend/mame/ui/devopt.cpp:116 #, c-format msgid " Screen '%1$s': %2$d × %3$d (V) %4$s Hz\n" -msgstr "" +msgstr " 画面 '%1$s': %2$d × %3$d (V) %4$s Hz\n" #: src/frontend/mame/ui/devopt.cpp:117 #, c-format msgid " Screen '%1$s': %2$d × %3$d (H) %4$s Hz\n" -msgstr "" +msgstr " 画面 '%1$s': %2$d × %3$d (H) %4$s Hz\n" #: src/frontend/mame/ui/devopt.cpp:130 msgid "* Sound:\n" @@ -3224,7 +3601,7 @@ msgstr "MARPスコア" msgid "Gameinit" msgstr "Gameinitファイル" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "ヒストリファイル" @@ -3248,17 +3625,49 @@ msgstr "MESSinfoファイル" msgid "MAMEinfo" msgstr "MAMEinfoファイル" -#~ msgid "Backdrops" -#~ msgstr "背景画像" +#~ msgid "Custom UI Settings" +#~ msgstr "カスタムUI設定" + +#~ msgid "Software Usage" +#~ msgstr "ソフトウェアの使い方" -#~ msgid "Overlays" -#~ msgstr "オーバーレイ画像" +#~ msgid "Usage" +#~ msgstr "使い方" -#~ msgid "Bezels" -#~ msgstr "ベゼル画像" +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "UIファイル" -#~ msgid "CPanels" -#~ msgstr "操作パネル画像" +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "サンプルファイル" + +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "タイトル画像" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "終了画像" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "ゲームオーバー" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "終了画像" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Marquees" +#~ msgstr "マーキー画像" + +#~ msgid "Select" +#~ msgstr "選択" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "ソフト:%1$-.100s" #~ msgid "View" #~ msgstr "ビュー" @@ -3344,32 +3753,9 @@ msgstr "MAMEinfoファイル" #~ msgid "Artwork Crop" #~ msgstr "アートワーク切り落とし" -#~ msgid "Use Backdrops" -#~ msgstr "背景画像使用" - -#~ msgid "Use Overlays" -#~ msgstr "オーバーレイ画像使用" - -#~ msgid "Use Bezels" -#~ msgstr "ベゼル画像使用" - -#~ msgid "Use Control Panels" -#~ msgstr "操作パネル画像使用" - -#~ msgid "Use Marquees" -#~ msgstr "マーキー画像使用" - #~ msgid "Bilinear snapshot" #~ msgstr "スナップショットのバイリニア" -#, c-format -#~ msgid " Screen '%1$s': %2$d × %3$d (V) %4$f Hz\n" -#~ msgstr " 画面 '%1$s': %2$d × %3$d (V) %4$f Hz\n" - -#, c-format -#~ msgid " Screen '%1$s': %2$d × %3$d (H) %4$f Hz\n" -#~ msgstr " 画面 '%1$s': %2$d × %3$d (H) %4$f Hz\n" - #~ msgid "" #~ "The software selected is missing one or more required ROM or CHD images. " #~ "Please select a different one." @@ -3463,12 +3849,6 @@ msgstr "MAMEinfoファイル" #~ msgid "Audit in progress..." #~ msgstr "検証中…" -#~ msgid " ^!File" -#~ msgstr "^!ファイル" - -#~ msgid " ^!Category" -#~ msgstr " ^!カテゴリ" - #~ msgid "Main filter" #~ msgstr "メインフィルタ" diff --git a/language/Korean/strings.po b/language/Korean/strings.po index 283827c1b4d..810365d2829 100644 --- a/language/Korean/strings.po +++ b/language/Korean/strings.po @@ -1,14 +1,14 @@ -# Korean translations for PACKAGE package -# PACKAGE 패키지에 대한 한국어 번역문. +# Korean translations for MAME package +# MAME 패키지에 대한 한국어 번역문. # Copyright (C) 2016 THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. +# This file is distributed under the same license as the MAME package. # Automatically generated, 2016. # msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -28,26 +28,26 @@ msgstr "" "\n" "아무 키를 누르면 진행합니다" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" "이 드라이버를 사용하기 위해선 다음 장치(들)에 이미지를 불러와야 합니다: " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -60,185 +60,185 @@ msgstr "" "''%1$s''를 누르면 종료.\n" "''%2$s''를 누르면 원래 화면으로 복귀." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "마스터 볼륨" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s 볼륨" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "CPU %1$s 오버클럭" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "%1$s 사운드 오버클럭" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s 재생 빈도" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s 명도" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s 대비" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s 감마값" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s 가로방향 연장" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s 가로방향 위치" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s 세로방향 연장" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s 세로방향 위치" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "레이저디스크 '%1$s' 가로방향 연장" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "레이저디스크 '%1$s' 가로방향 위치" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "레이저디스크 '%1$s' 세로방향 연장" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "레이저디스크 '%1$s' 세로방향 위치" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "벡터 깜빡임" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "선 폭 최소량" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "선 폭 최대량" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "선 강도 비중" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "조준선 크기 %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "조준선 영점 %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "조준선 크기 X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "조준선 크기 Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "조준선 영점 X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "조준선 영점 Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**ui.ini 저장 오류**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**%s.ini 저장 오류**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -248,7 +248,7 @@ msgstr "" " 환경설정 저장됨 \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -257,8 +257,8 @@ msgstr "" "%s\n" " 즐겨찾기 목록에 추가됐습니다." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -267,33 +267,33 @@ msgstr "" "%s\n" " 즐겨찾기 목록에서 삭제됐습니다." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d 소프트웨어 패키지 )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "드라이버: \"%1$s\" 소프트웨어 목록 " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - 검색: %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "검색: %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "사운드 설정" @@ -321,7 +321,7 @@ msgstr "UI 꾸미기" msgid "Configure Directories" msgstr "디렉토리 환경설정" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[빈 칸]" @@ -330,7 +330,7 @@ msgstr "[빈 칸]" msgid "[create]" msgstr "[생성]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[소프트웨어 목록]" @@ -339,23 +339,23 @@ msgstr "[소프트웨어 목록]" msgid "Error accessing %s" msgstr "%s 접근에 오류 발생" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "엑세스 방식 선택" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "읽기 전용" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "읽기/쓰기" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "이 이미지를 읽고 다른 이미지에 씁니다" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "이 이미지를 읽고 diff에 씁니다" @@ -375,7 +375,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "오른쪽 패널 이미지 확대" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "치트" @@ -667,36 +667,36 @@ msgstr "새로고침 동기화" msgid "Wait Vertical Sync" msgstr "수직동기화 기다림" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "켜기" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "끄기" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "자동" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "장치로 돌아가기" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "닫기" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "이전 메뉴로 돌아가기" @@ -734,86 +734,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "보호처리" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "타이밍" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "그래픽" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "컬러 팔레트" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "사운드" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "카메라" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "마이크로폰" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "컨트롤" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "키보드" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "마우스" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "디스크" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "프린터" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" -msgstr "" +msgstr "자기 테이프" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "LAN" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "WAN" @@ -1001,28 +1022,28 @@ msgstr "부분적으로 지원함" msgid "[empty]" msgstr "[공백]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[파일 관리자]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "항목 정렬순서 변경" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "정렬순서 변경: 현재 %s 순서로 항목이 배열됨" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "약칭" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "설명" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[호환 목록]" @@ -1030,11 +1051,11 @@ msgstr "[호환 목록]" msgid "File Already Exists - Override?" msgstr "그 파일이 이미 있습니다. 덮어쓰겠습니까?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "아니오" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "예" @@ -1075,7 +1096,7 @@ msgstr "실재" msgid "Emulated" msgstr "에뮬레이션" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1092,189 +1113,358 @@ msgstr "활성" msgid "Disabled" msgstr "비활성" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "필터 미사용" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "사용 가능" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "사용 불가" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "작동함" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "작동 불가" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "기계적" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "비기계적" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "분류" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "즐겨찾기" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" -msgstr "바이오스" +msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "바이오스 아님" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "원형" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "복제" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "제조사" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "연도" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "저장 지원" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "저장 지원 안 됨" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "CHD 필요" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "CHD 필요없음" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "세로 화면" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "가로 화면" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "사용자 제작 필터" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "필터 미사용" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "사용 가능" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "사용 불가" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "즐겨찾기" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "원형" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "복제" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "연도" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "배급사" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "지원됨" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "부분적으로 지원됨" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "지원 안 됨" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "발매 지역" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "장치 종류" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "소프트웨어 목록" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "사용자 제작 필터" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "<필터 결정>" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "사용자 제작 필터 선택:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "필터 %1$u" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "가장 최근의 필터 삭제" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "필터 추가" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "분류 선택" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "[카테고리 INI 파일 없음]" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "[INI 파일에 그룹 없음]" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "카테고리 INI 파일을 찾을 수 없습니다" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "파일" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "카테고리 파일 내에 그룹이 없습니다" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "그룹" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "복제판 포함" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "소프트웨어 사용" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "개정: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "리셋" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1283,7 +1473,7 @@ msgstr "" "가동 시간: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1292,7 +1482,7 @@ msgstr "" "가동 시간: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1301,88 +1491,92 @@ msgstr "" "티켓 발행: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "코인 %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "코인 %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (잠김)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "표시 지연" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml가 ui 폴더에 저장됐습니다.." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "이름: 설명:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt가 ui 폴더에 저장됐습니다.." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "XML 형식으로 명단 보내기 (-listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "XML 형식으로 명단 보내기 (-listxml, 장치 제외)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "TXT 형식으로 명단 보내기 (-listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "바이오스" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "드라이버" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "장치에 바이오스가 없습니다." -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "즐겨찾기에 추가" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "즐겨찾기에서 삭제" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (기본)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "플러그인" @@ -1394,23 +1588,41 @@ msgstr "유사 터미널" msgid "[failed]" msgstr "[실패]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "상태 불러오기" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "상태 저장하기" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1433,7 +1645,7 @@ msgid "Other Controls" msgstr "기타 조작" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1445,27 +1657,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1546,7 +1758,7 @@ msgstr "" "라 %2$s 환경설정에 관한 정보를 찾아 참고하십시오." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "옵션 환경설정" @@ -1560,7 +1772,7 @@ msgid "Type name or select: (random)" msgstr "새 이름을 짓거나 선택하십시오: (무작위)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1571,52 +1783,52 @@ msgid "Driver: %1$-.100s" msgstr "드라이버: %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "종합: 작동 불가" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "종합: 보호처리 에뮬레이션 미완" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "종합: 작동 가능" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "그래픽: 적용 안 됨," #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "그래픽: 불완전," #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "그래픽: 양호," #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "사운드: 없음" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "사운드: 적용 안 됨" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "사운드: 불완전" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "사운드: 양호" @@ -1642,466 +1854,523 @@ msgid "Reload All" msgstr "전부 불러오기" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROM" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "소프트웨어 미디어" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "UI" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "언어" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "삽화" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "견본" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "조준선" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DAT" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INI" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DAT" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "카테고리 INI" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "스냅샷" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "아이콘" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "스냅샷" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "조작반" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "캐비닛" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "전단지" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "시작화면" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "종료화면" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "PCB" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "간판" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "조작반" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "조준선" +msgctxt "path-option" +msgid "PCBs" +msgstr "PCB" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "삽화" +msgctxt "path-option" +msgid "Flyers" +msgstr "전단지" + +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "시작화면" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "보스" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" msgstr "삽화 미리보기" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "선택" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "게임오버" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "조작법" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "로고" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "점수" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "대전" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "표지" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "폴더 정리" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "현재 %1$s 폴더" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "폴더 변경" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "폴더 추가" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "폴더 삭제" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "%1$s 폴더 바꾸기 - 검색: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "%1$s 폴더 추가 - 검색: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "TAB을 누르면 결정됩니다" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "%1$s 폴더 제거" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " COLORS" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " PENS" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "장치 환경설정" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "롬셋\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "연도\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "제조사\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "다음 드라이버의 복제\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "원형 드라이버\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "아날로그 조작\t예\n" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "키보드 입력\t예\n" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "종합\t작동 불가\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "종합\t보호처리 에뮬레이션 미완\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "종합\t작동\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "그래픽\t적용 안 됨\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "그래픽\t잘못된 색상\n" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "그래픽\t불완전한 색상\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "그래픽\t불완전\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "그래픽\t양호\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "사운드\t없음\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "사운드\t적용 안 됨\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "사운드\t불완전\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "사운드\t양호\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "카메라\t적용 안 됨\n" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "카메라\t불완전\n" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "마이크로폰\t적용 안 됨\n" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "마이크로폰\t불완전\n" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "컨트롤\t적용 안 됨\n" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "컨트롤\t불완전\n" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "키보드\t적용 안 됨\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "키보드\t불완전\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "마우스\t적용 안 됨\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "마우스\t불완전\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "디스크\t적용 안 됨\n" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "디스크\t불완전\n" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "프린터\t적용 안 됨\n" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "프린터\t불완전\n" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "LAN\t적용 안 됨\n" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "LAN\t불완전\n" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "WAN\t적용 안 됨\n" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "WAN\t불완전\n" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "타이밍\t적용 안 됨\n" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "타이밍\t불완전\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "기계적 장치\t예\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "기계적 장치\t아니오\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "삽화 필요\t예\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "삽화 필요\t아니오\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "클릭가능한 삽화 필요\t예\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "클릭가능한 삽화 필요\t아니오\n" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "칵테일 지원\t아니오\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "드라이버가 바이오스\t예\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "드라이버가 바이오스\t아니오\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "저장 지원\t예\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "저장 지원\t아니오\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "화면 방향\t세로형\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "화면 방향\t가로형\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "CHD 필요\t예\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "CHD 필요\t아니오\n" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "ROM 검사 결과\t양호\n" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "ROM 검사 결과\t불량\n" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "견본 검사 결과\t불필요\n" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "견본 검사 결과\t양호\n" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "견본 검사 결과\t불량\n" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" @@ -2109,17 +2378,12 @@ msgstr "" "ROM 검사 \t사용 안 함\n" "견본 검사 \t사용 안 함\n" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d 장치 (%5$d BIOS) " -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "롬셋: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "시스템: %1$-.100s" @@ -2133,22 +2397,22 @@ msgstr "선택 목록 - 검색: " msgid "Double click or press %1$s to select" msgstr "더블 클릭 혹은 %1$s 키를 눌러 선택" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "현재 이용할 수 없는 %1$u 장치들에 대해 ROM 검사를 실시합니까?" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "모든 %1$u 장치들에 대해 ROM 검사를 실시합니까?" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(결과는 %1$s에 저장됩니다)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" @@ -2157,7 +2421,7 @@ msgstr "" "%3$u %2$u 장치의 ROM을 검사중...\n" "%1$s" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "검사 시작" @@ -2177,212 +2441,247 @@ msgstr "정보 및 이미지 숨기기" msgid "Hide Both" msgstr "모두 숨기기" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "문자" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "색상" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "언어" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "사이드 패널 보이기" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "UI 꾸미기 환경설정" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "기본" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "UI 글꼴" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "굵은 글씨" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "이탤릭체" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "줄" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "정보표시 글자 크기" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "UI 문자 환경설정" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "예시문 - 다람쥐 헌 쳇바퀴에 타고파. ABCDEFGHIJKLMNabcdefghijklmn 1234567890" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "보통 글자" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "선택된 색상" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "보통 글자 배경" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "선택된 배경색" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "하위 항목 색상" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "클론" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "테두리" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "배경" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "DIP 스위치" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "사용불가 색상" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "슬라이더 색상" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "그래픽 뷰어 배경" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "마우스 오버 색상" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "마우스 오버 배경색상" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "마우스 다운 색상" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "마우스 다운 배경색상" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "원래 색상으로 복귀" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "UI 색상 환경설정" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "더블 클릭 혹은 %1$s를 눌러 색상값 변경하기" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "메뉴 미리보기" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "일반" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "하위항목" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "선택된 항목" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "마우스 오버" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "ARGB 설정" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "불투명도" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "적" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "녹" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "청" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "팔레트에서 고르기" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "색상 미리보기 =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "하양" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "은색" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "회색" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "검정" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "적" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "주황" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "노랑" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "녹" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "청" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "보라" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2413,7 +2712,7 @@ msgstr "아날로그 조작" #: src/frontend/mame/ui/mainmenu.cpp:71 msgid "DIP Switches" -msgstr "" +msgstr "DIP 스위치" #: src/frontend/mame/ui/mainmenu.cpp:73 msgid "Machine Configuration" @@ -2489,137 +2788,215 @@ msgid "Select New Machine" msgstr "새로운 장치 선택" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "스냅샷" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "캐비닛" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" msgstr "조작반" +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "PCB" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "전단지" + #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "시작화면" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "삽화 미리보기" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "보스" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "로고" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "대전" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "게임 오버" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "조작법" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "점수" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "간판" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "표지" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "즐겨찾기 추가 및 삭제" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "표시된 목록을 파일로 보내기" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "DAT 화면 보이기" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "선택한 소프트웨어 요소:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "바이오스 선택:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "이 소프트웨어는 다음의 복제입니다: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "이 소프트웨어는 원형입니다" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "지원여부: 아니오" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "지원여부: 부분적" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "지원여부: 예" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "롬셋: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "이 드라이버는 다음의 복제입니다: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "롬셋: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "이 드라이버는 원형입니다" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "이 드라이버는 다음의 복제입니다: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "사진" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "정보" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "아무 키를 누르면 진행합니다." -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "사용" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "일반 정보" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "사운드" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "샘플 레이트" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "외부 샘플 이용" @@ -2673,12 +3050,12 @@ msgstr " 화면 '%1$s': 벡터\n" #: src/frontend/mame/ui/devopt.cpp:116 #, c-format msgid " Screen '%1$s': %2$d × %3$d (V) %4$s Hz\n" -msgstr "" +msgstr " 화면 '%1$s': %2$d × %3$d (V) %4$s Hz\n" #: src/frontend/mame/ui/devopt.cpp:117 #, c-format msgid " Screen '%1$s': %2$d × %3$d (H) %4$s Hz\n" -msgstr "" +msgstr " 화면 '%1$s': %2$d × %3$d (H) %4$s Hz\n" #: src/frontend/mame/ui/devopt.cpp:130 msgid "* Sound:\n" @@ -3223,7 +3600,7 @@ msgstr "MARP 점수" msgid "Gameinit" msgstr "Gameinit" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "역사" @@ -3247,17 +3624,49 @@ msgstr "MESSinfo" msgid "MAMEinfo" msgstr "MAMEinfo" -#~ msgid "Backdrops" -#~ msgstr "배경" +#~ msgid "Custom UI Settings" +#~ msgstr "UI 꾸미기 환경설정" + +#~ msgid "Software Usage" +#~ msgstr "소프트웨어 사용" + +#~ msgid "Usage" +#~ msgstr "사용" + +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "UI" + +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "언어" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "견본" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "치트" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "종료화면" -#~ msgid "Overlays" -#~ msgstr "오버레이" +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "게임오버" -#~ msgid "Bezels" -#~ msgstr "베젤" +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "종료화면" -#~ msgid "CPanels" -#~ msgstr "조작반" +#~ msgid "Select" +#~ msgstr "선택" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "롬셋: %1$-.100s" #~ msgid "View" #~ msgstr "시야" @@ -3268,9 +3677,6 @@ msgstr "MAMEinfo" #~ msgid "Full" #~ msgstr "전체" -#~ msgid "Dip Switches" -#~ msgstr "DIP 스위치" - #~ msgid "Select position to load from" #~ msgstr "불러올 상태의 위치 선택" @@ -3353,52 +3759,9 @@ msgstr "MAMEinfo" #~ msgid "Artwork Crop" #~ msgstr "삽화 자르기" -#~ msgid "Use Backdrops" -#~ msgstr "배경화면 사용" - -#~ msgid "Use Overlays" -#~ msgstr "오버레이 사용" - -#~ msgid "Use Bezels" -#~ msgstr "제벨 사용" - -#~ msgid "Use Control Panels" -#~ msgstr "조작반 사용" - -#~ msgid "Use Marquees" -#~ msgstr "간판 사용" - #~ msgid "Bilinear snapshot" #~ msgstr "이중선형 스냅샷" -#, c-format -#~ msgid " %1$d×%2$s %3$d.%4$06d MHz\n" -#~ msgstr " %1$d×%2$s %3$d.%4$06d MHz\n" - -#~ msgid " %1$d×%2$s %5$d.%6$03d kHz\n" -#~ msgstr " %1$d×%2$s %5$d.%6$03d kHz\n" - -#~ msgid " %2$s %3$d.%4$06d MHz\n" -#~ msgstr " %2$s %3$d.%4$06d MHz\n" - -#~ msgid " %2$s %5$d.%6$03d kHz\n" -#~ msgstr " %2$s %5$d.%6$03d kHz\n" - -#, c-format -#~ msgid " Screen '%1$s': %2$d × %3$d (V) %4$f Hz\n" -#~ msgstr " 화면 '%1$s': %2$d × %3$d (V) %4$f Hz\n" - -#, c-format -#~ msgid " Screen '%1$s': %2$d × %3$d (H) %4$f Hz\n" -#~ msgstr " 화면 '%1$s': %2$d × %3$d (H) %4$f Hz\n" - -#, c-format -#~ msgid " %1$d×%2$s\n" -#~ msgstr " %1$d×%2$s\n" - -#~ msgid " %2$s\n" -#~ msgstr " %2$s\n" - #~ msgid "" #~ "The software selected is missing one or more required ROM or CHD images. " #~ "Please select a different one." diff --git a/language/Latvian/strings.po b/language/Latvian/strings.po index 0326a8240d8..ada342f8a21 100644 --- a/language/Latvian/strings.po +++ b/language/Latvian/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -18,32 +18,32 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -52,233 +52,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -306,7 +306,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -315,7 +315,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -324,23 +324,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -360,7 +360,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -652,36 +652,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -719,86 +719,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -962,28 +983,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -991,11 +1012,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1036,7 +1057,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1053,291 +1074,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1349,23 +1543,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1388,7 +1600,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1400,27 +1612,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1493,7 +1705,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1507,7 +1719,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1518,52 +1730,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1587,482 +1799,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2076,29 +2340,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2118,211 +2382,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2429,137 +2728,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3147,7 +3524,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Lithuanian/strings.po b/language/Lithuanian/strings.po index f8dfe31ae52..d670a5aa049 100644 --- a/language/Lithuanian/strings.po +++ b/language/Lithuanian/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -18,32 +18,32 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" "%100<10 || n%100>=20) ? 1 : 2);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -52,233 +52,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -306,7 +306,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -315,7 +315,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -324,23 +324,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -360,7 +360,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -652,36 +652,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -719,86 +719,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -962,28 +983,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -991,11 +1012,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1036,7 +1057,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1053,291 +1074,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1349,23 +1543,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1388,7 +1600,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1400,27 +1612,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1493,7 +1705,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1507,7 +1719,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1518,52 +1730,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1587,482 +1799,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2076,29 +2340,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2118,211 +2382,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2429,137 +2728,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3147,7 +3524,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Macedonian/strings.po b/language/Macedonian/strings.po index 148a058601b..b434a355a5d 100644 --- a/language/Macedonian/strings.po +++ b/language/Macedonian/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -16,32 +16,32 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -50,233 +50,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -304,7 +304,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -313,7 +313,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -322,23 +322,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -358,7 +358,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -650,36 +650,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -717,86 +717,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -960,28 +981,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -989,11 +1010,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1034,7 +1055,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1051,291 +1072,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1347,23 +1541,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1386,7 +1598,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1398,27 +1610,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1491,7 +1703,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1505,7 +1717,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1516,52 +1728,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1585,482 +1797,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2074,29 +2338,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2116,211 +2380,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2427,137 +2726,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3145,7 +3522,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Norwegian/strings.po b/language/Norwegian/strings.po index 878da88a8e3..6c37c9c68b8 100644 --- a/language/Norwegian/strings.po +++ b/language/Norwegian/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2018-08-05 19:10+0200\n" "Last-Translator: Imre Kristoffer Eilertsen <imreeil42@gmail.com>\n" "Language-Team: MAME Language Team\n" @@ -18,7 +18,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.1.1\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -28,26 +28,26 @@ msgstr "" "\n" "Trykk på enhver knapp for å fortsette" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" "Denne driveren krever at bilder lastes inn i de(n) følgende enhet(en): " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -60,185 +60,185 @@ msgstr "" "Trykk «%1$s» for å avslutte,\n" "Trykk «%2$s» for å gå tilbake til emuleringen." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Hovedvolum" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s volum" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "Overklokk CPU %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "Overklokk %1$s-lyd" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s-oppfriskningsfrekvens" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s lysstyrke" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s kontrast" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s gamma" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s vannrett strekk" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s vannrett posisjon" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s loddrett strekk" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s loddrett posisjon" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "Laserdisc %1$s vannrett strekk" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "Laserdisc %1$s vannrett posisjon" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "Laserdisc %1$s loddrett strekk" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "Laserdisc %1$s loddrett posisjon" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Vektorflimring" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Minimum strålebredde" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Maks strålebredde" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Stråleintensitetsvekt" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Siktehårskala %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Siktehåravvik %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Siktehårskala X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Siktehårskala Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Siktehåravvik X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Siktehåravvik Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**Feil under lagring av ui.ini**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "Feil under lagring av %s.ini**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -248,7 +248,7 @@ msgstr "" " Oppsettet er lagret \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -257,8 +257,8 @@ msgstr "" "%s\n" " ble lagt til i favorittlisten." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -267,33 +267,33 @@ msgstr "" "%s\n" " ble fjernet fra favorittlisten." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d programvarepakker )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Driver: «%1$s»-programvareliste " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - Søk: %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "Søk: %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Lydinnstillinger" @@ -321,7 +321,7 @@ msgstr "Tilpass grensesnittet" msgid "Configure Directories" msgstr "Sett opp mapper" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[tomt felt]" @@ -330,7 +330,7 @@ msgstr "[tomt felt]" msgid "[create]" msgstr "[opprett]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[programvareliste]" @@ -339,23 +339,23 @@ msgstr "[programvareliste]" msgid "Error accessing %s" msgstr "Feil med å få tilgang til %s" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Velg tilgangsmodus" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Skrivebeskyttet" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Skriv og les" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Les inn dette bildet, skriv til et annet bilde" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Les dette bildet, skriv til diff" @@ -375,7 +375,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "Forstørr bildene i panelet til høyre" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Juksekoder" @@ -667,36 +667,36 @@ msgstr "Synkronisert oppfriskning" msgid "Wait Vertical Sync" msgstr "Avvent V-synkro" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "På" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Av" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Auto" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Tilbake til maskinen" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Avslutt" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Gå tilbake til forrige meny" @@ -734,86 +734,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "beskyttelse" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "timing" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "grafikk" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "fargepalett" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "lyd" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "kamera" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "mikrofon" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "kontrollere" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "tastatur" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "mus" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "disk" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "skriver" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "LAN" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "WAN" @@ -1003,28 +1024,28 @@ msgstr "Delvis støttet" msgid "[empty]" msgstr "[tom]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[filbehandler]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Bytt om på gjenstandssortering" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "Byttet rekkefølge: oppføringer sorteres nå etter %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "mininavn" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "beskrivelse" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[kompatible lister]" @@ -1032,11 +1053,11 @@ msgstr "[kompatible lister]" msgid "File Already Exists - Override?" msgstr "Filen finnes allerede - Vil du overskrive?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "Nei" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Ja" @@ -1077,7 +1098,7 @@ msgstr "Naturlig" msgid "Emulated" msgstr "Emulert" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1094,189 +1115,358 @@ msgstr "Skrudd på" msgid "Disabled" msgstr "Skrudd av" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "Ufiltrert" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "Tilgjengelig" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "Utilgjengelig" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "Fungerer" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "Virker ikke" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "Mekanisk" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "Ikke mekanisk" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "Kategori" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "Favoritter" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "BIOS" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "Ikke BIOS" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "Overordnede" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "Kloner" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "Produsent" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "År" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "Lagring er støttet" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "Lagring er ikke støttet" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "CHD er påkrevd" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "Ingen CHD er påkrevd" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "Loddrett skjerm" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "Vannrett skjerm" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "Tilpasset filter" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "Ufiltrert" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "Tilgjengelig" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "Utilgjengelig" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "Favoritter" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "Overordnede" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "Kloner" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "År" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "Publiserer" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "Støttet" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "Delvis støttet" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "Ikke støttet" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "Lanseringsregion" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "Enhetstype" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "Programvareliste" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "Tilpasset filter" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "<Sett opp filtre>" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Velg tilpassede filtre:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "Filtrer %1$u" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Fjern det forrige filteret" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Legg til et filter" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "Velg kategori:" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "[ingen kategori-INI-filer]" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "[ingen grupper i INI-filen]" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "Ingen kategori-INI-filer ble funnet" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "Fil" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "Ingen grupper ble funnet i kategorifilen" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "Gruppe" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "Inkluder kloner" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Programvarebruk" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Revidering: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Tilbakestill" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1285,7 +1475,7 @@ msgstr "" "Oppetid: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1294,7 +1484,7 @@ msgstr "" "Oppetid: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1303,88 +1493,92 @@ msgstr "" "Utskrevne billetter: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Mynt %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Mynt %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (låst)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Synlig forsinkelse" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml ble lagret i ui-mappen." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Navn: Beskrivelse:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt ble lagret i ui-mappen." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Eksporter listen i XML-format (som i -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "Eksporter listen i XML-format (som i -listxml, men ekskluder enheter)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Eksporter listen i TXT-format (som i -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Driver" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "Denne maskinen har ingen BIOS." -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Legg til i favorittene" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Fjern fra favorittene" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (standard)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Tillegg" @@ -1396,23 +1590,41 @@ msgstr "Kvasiterminaler" msgid "[failed]" msgstr "[mislyktes]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "Last inn tilstand" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "Lagre tilstanden" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1435,7 +1647,7 @@ msgid "Other Controls" msgstr "Andre kontrolleringer" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1447,27 +1659,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1549,7 +1761,7 @@ msgstr "" "i dokumentmappen for informasjon om hvordan man setter opp %2$s." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Sett opp innstillingene" @@ -1563,7 +1775,7 @@ msgid "Type name or select: (random)" msgstr "Skriv inn navn eller velg: (tilfeldig)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1574,52 +1786,52 @@ msgid "Driver: %1$-.100s" msgstr "Driver: %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "Alt i alt: VIRKER IKKE" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "Alt i alt: Uemulert beskyttelse" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "Alt i alt: Fungerer" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "Grafikk: Ikke implementert, " #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Grafikk: Ikke perfekt, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Grafikk: OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "Lyd: Ingen" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Lyd: Ikke implementert" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Lyd: Ikke perfekt" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Lyd: OK" @@ -1645,468 +1857,525 @@ msgid "Reload All" msgstr "Last inn alle på nytt" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROM-filer" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "Programvaremedier" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "Grensesnitt" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Språk" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "Kunstverk" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Samplinger" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Siktehår" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DATer" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INIer" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DATer" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "Kategori-INIer" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Skjermklipp" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Ikoner" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Skjermklipp" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Kontrollpaneler" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Kabinetter" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Plakater" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Titteler" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Slutter" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "PCBer" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "Markier" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Kontrollpaneler" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Siktehår" +msgctxt "path-option" +msgid "PCBs" +msgstr "PCBer" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Kunstverk" +msgctxt "path-option" +msgid "Flyers" +msgstr "Plakater" + +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Bosser" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" msgstr "Kunstverkforhåndsvisning" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "Velg" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "GameOver" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "Hvordan" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Logoer" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Scorer" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Flerspiller" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Omslag" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Mappeoppsett" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Nåværende %1$s-mapper" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Bytt mappe" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Legg til mappe" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Fjern mappe" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "Endre %1$s-mappe - Søk: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "Legg til %1$s mappe - søk: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Trykk TAB for å velge" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "Fjern %1$s mappe" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " FARGER" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " PENNER" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Sett opp maskinen" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "ROM-sett\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "År\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "Produsent\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "Driveren er klone av\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "Driveren er overordnet\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "Analog styring\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "Tastaturinndata\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "Alt i alt\tVIRKER IKKE\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "Alt i alt\tUemulert beskyttelse\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "Alt i alt\tFungerer\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "Grafikk\tIkke implementer\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "Grafikk\tFeil farger\n" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "Grafikk\tNoen fargeproblemer\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "Grafikk\tIkke perfekt\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "Grafikk\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "Lyd\tIngen\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "Lyd\tIkke implementer\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "Lyd\tIkke perfekt\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "Lyd\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "Kamera\tIkke implementert\n" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "Kamera\tIkke perfekt\n" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "Mikrofon\tIkke implementert\n" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "Mikrofon\tIkke perfekt\n" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "Kontrollere\tIkke implementert\n" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "Kontrollere\tIkke perfekt\n" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "Tastatur\tIkke implementert\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "Tastatur\tIkke perfekt\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "Mus\tIkke implementert\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "Mus\tIkke perfekt\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "Disk\tIkke implementert\n" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "Disk\tIkke perfekt\n" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "Skriver\tIkke implementert\n" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "Skriver\tIkke perfekt\n" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "LAN\tIkke implementert\n" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "LAN\tIkke perfekt\n" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "WAN\tIkke implementert\n" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "WAN\tIkke perfekt\n" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "Timing\tIkke implementert\n" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "Timing\tIkke perfekt\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "Mekanisk maskin\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "Mekanisk maskin\tNei\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "Krever kunstverk\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "Krever kunstverk\tNei\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "Krever klikkbare kunstverk\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "Krever klikkbare kunstverk\tNei\n" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "Støtter Cocktail\tNei\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "Driveren er BIOS\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "Driveren er BIOS\tNei\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "Støtter lagring\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "Støtter lagring\tNei\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "Skjermposisjonering\tLoddrett\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "Skjermposisjonering\tVannrett\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "Krever CHD\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "Krever CHD\tNei\n" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "ROM-undersøkelsesresultat\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "ROM-undersøkelsesresultat\tDÅRLIG\n" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "Samplingsundersøkelsesresultat\tIkke nødvendig\n" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" "Samplingsundersøkelsesresultat\n" "OK\n" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "Samplingsundersøkelsesresultat\tDÅRLIG\n" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" @@ -2114,17 +2383,12 @@ msgstr "" "ROM-undersøkelse \tSkrudd av\n" "Samplingsundersøkelse \tSkrudd av\n" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d maskiner (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "ROM-sett: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "System: %1$-.100s" @@ -2138,24 +2402,24 @@ msgstr "Utvalgsliste - Søk: " msgid "Double click or press %1$s to select" msgstr "Dobbeltklikk eller trykk %1$s for å velge" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" "Vil du undersøke ROM-filene til %1$u maskiner som er merket som " "utilgjengelige?" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "Vil du undersøke ROM-filene til alle %1$u maskinene?" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(utfallene vil bli lagret til %1$s)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" @@ -2164,7 +2428,7 @@ msgstr "" "Undersøker ROM-filene til maskin nr. %2$u av %3$u...\n" "%1$s" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "Start undersøking" @@ -2184,211 +2448,246 @@ msgstr "Skjul Info/Bilder" msgid "Hide Both" msgstr "Skjul begge" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Skrifttyper" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Farger" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Språk" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Vis sidepanelene" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Tilpassede grensesnittinnstillinger" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "standard" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Grensesnittskrifttype" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Fet" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Kursiv" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Linjer" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Info-tekststørrelse" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Grensesnittskrifttypeinnstillinger" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "Prøvetekst - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Vanlig tekst" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Valgt farge" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Bakgrunn for vanlig tekst" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Valgt bakgrunnsfarge" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Undergjenstandsfarge" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Klon" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Kant" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Bakgrunn" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "DIP-brytere" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Utilgjengelig farge" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Gliderfarge" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Grafikkviserbakgrunn" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Museoverholdingsfarge" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Museoverholdingsbakgrunnsfarge" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Musenedeholdingsfarge" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Musenedeholdingsbakgrunnsfarge" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Gjenopprett de opprinnelige fargene" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Grensesnittfargeinnstillinger" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "Dobbeltklikk eller trykk %1$s for å endre fargeverdien" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Menyforhåndsvisning" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Normal" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Undergjenstand" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Valgt" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Hold musen over" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "ARGB-innstillinger" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Alfa" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Rød" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Grønn" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Blå" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Velg fra palett" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Fargeforhåndsvisning =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Hvit" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Sølv" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Grå" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Svart" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Rød" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Oransje" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Gul" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Grønn" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Blå" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Fiolett" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2419,7 +2718,7 @@ msgstr "Analoge kontrollere" #: src/frontend/mame/ui/mainmenu.cpp:71 msgid "DIP Switches" -msgstr "" +msgstr "DIP-brytere" #: src/frontend/mame/ui/mainmenu.cpp:73 msgid "Machine Configuration" @@ -2495,137 +2794,215 @@ msgid "Select New Machine" msgstr "Velg en ny maskin" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Kontrollpaneler" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Skjermklipp" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "Kabinett" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "Kontrollpanel" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "PCB" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "Plakat" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Kunstverkforhåndsvisning" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Bosser" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "Logo" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Flerspiller" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Game Over" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Hvordan" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Scorer" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Omslag" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Legg til eller fjern favoritter" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Eksporter den viste listen til en fil" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "Vis DAT-oversikten" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Programvaredel-valg:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "BIOS-valg:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "Programvaren er en klone av: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "Programvaren er overordnet" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Støttet: Nei" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Støttet: Delvis" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Støttet: Ja" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "ROM-sett: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "Driveren er en klone av: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "ROM-sett: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "Driveren er overordnet" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "Driveren er en klone av: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Bilder" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Info" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "Trykk på enhver knapp for å fortsette." -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Bruksområde" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Generell info" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Lyd" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Samplingsfrekvens" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Bruk eksterne samplinger" @@ -2681,12 +3058,12 @@ msgstr " Skjerm '%1$s': Vektor\n" #: src/frontend/mame/ui/devopt.cpp:116 #, c-format msgid " Screen '%1$s': %2$d × %3$d (V) %4$s Hz\n" -msgstr "" +msgstr " Skjerm '%1$s': %2$d × %3$d (V) %4$s Hz\n" #: src/frontend/mame/ui/devopt.cpp:117 #, c-format msgid " Screen '%1$s': %2$d × %3$d (H) %4$s Hz\n" -msgstr "" +msgstr " Skjerm '%1$s': %2$d × %3$d (H) %4$s Hz\n" #: src/frontend/mame/ui/devopt.cpp:130 msgid "* Sound:\n" @@ -3231,7 +3608,7 @@ msgstr "MARPScore" msgid "Gameinit" msgstr "Gameinit" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Historikk" @@ -3255,17 +3632,61 @@ msgstr "MESSinfo" msgid "MAMEinfo" msgstr "MAMEinfo" -#~ msgid "Backdrops" -#~ msgstr "Bakgrunner" +#~ msgid "Custom UI Settings" +#~ msgstr "Tilpassede grensesnittinnstillinger" + +#~ msgid "Software Usage" +#~ msgstr "Programvarebruk" + +#~ msgid "Usage" +#~ msgstr "Bruksområde" + +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "Grensesnitt" + +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Språk" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Samplinger" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Juksekoder" + +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "Titteler" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "Slutter" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "GameOver" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "Titteler" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Slutter" -#~ msgid "Overlays" -#~ msgstr "Overlegg" +#~ msgctxt "selmenu-artwork" +#~ msgid "Marquees" +#~ msgstr "Markier" -#~ msgid "Bezels" -#~ msgstr "Bezeler" +#~ msgid "Select" +#~ msgstr "Velg" -#~ msgid "CPanels" -#~ msgstr "K.paneler" +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "ROM-sett: %1$-.100s" #~ msgid "View" #~ msgstr "Vis" @@ -3276,9 +3697,6 @@ msgstr "MAMEinfo" #~ msgid "Full" #~ msgstr "Full" -#~ msgid "Dip Switches" -#~ msgstr "DIP-brytere" - #~ msgid "Select position to load from" #~ msgstr "Velg en posisjon å laste inn ifra" @@ -3340,9 +3758,6 @@ msgstr "MAMEinfo" #~ msgid "Configure machine:" #~ msgstr "Sett opp maskinen:" -#~ msgid "Support Cocktail\tYes\n" -#~ msgstr "Støtter Cocktail\tJa\n" - #~ msgid "" #~ "The selected machine is missing one or more required ROM or CHD images. " #~ "Please select a different machine.\n" @@ -3361,52 +3776,9 @@ msgstr "MAMEinfo" #~ msgid "Artwork Crop" #~ msgstr "Kunstverkbeskjæring" -#~ msgid "Use Backdrops" -#~ msgstr "Bruk bakgrunner" - -#~ msgid "Use Overlays" -#~ msgstr "Bruk overlegg" - -#~ msgid "Use Bezels" -#~ msgstr "Bruk bezeler" - -#~ msgid "Use Control Panels" -#~ msgstr "Bruk kontrollpaneler" - -#~ msgid "Use Marquees" -#~ msgstr "Bruk markier" - #~ msgid "Bilinear snapshot" #~ msgstr "Bilineær skjermklipp" -#, c-format -#~ msgid " %1$d×%2$s %3$d.%4$06d MHz\n" -#~ msgstr " %1$d×%2$s %3$d.%4$06d MHz\n" - -#~ msgid " %1$d×%2$s %5$d.%6$03d kHz\n" -#~ msgstr " %1$d×%2$s %5$d.%6$03d kHz\n" - -#~ msgid " %2$s %3$d.%4$06d MHz\n" -#~ msgstr " %2$s %3$d.%4$06d MHz\n" - -#~ msgid " %2$s %5$d.%6$03d kHz\n" -#~ msgstr " %2$s %5$d.%6$03d kHz\n" - -#, c-format -#~ msgid " Screen '%1$s': %2$d × %3$d (V) %4$f Hz\n" -#~ msgstr " Skjerm '%1$s': %2$d × %3$d (V) %4$f Hz\n" - -#, c-format -#~ msgid " Screen '%1$s': %2$d × %3$d (H) %4$f Hz\n" -#~ msgstr " Skjerm '%1$s': %2$d × %3$d (H) %4$f Hz\n" - -#, c-format -#~ msgid " %1$d×%2$s\n" -#~ msgstr " %1$d×%2$s\n" - -#~ msgid " %2$s\n" -#~ msgstr " %2$s\n" - #~ msgid "" #~ "The software selected is missing one or more required ROM or CHD images. " #~ "Please select a different one." diff --git a/language/Persian/strings.po b/language/Persian/strings.po index 71634b6328a..198f639fd10 100644 --- a/language/Persian/strings.po +++ b/language/Persian/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -16,32 +16,32 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -50,233 +50,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -304,7 +304,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -313,7 +313,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -322,23 +322,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -358,7 +358,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -650,36 +650,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -717,86 +717,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -960,28 +981,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -989,11 +1010,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1034,7 +1055,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1051,291 +1072,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1347,23 +1541,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1386,7 +1598,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1398,27 +1610,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1491,7 +1703,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1505,7 +1717,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1516,52 +1728,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1585,482 +1797,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2074,29 +2338,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2116,211 +2380,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2427,137 +2726,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3145,7 +3522,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Polish/strings.po b/language/Polish/strings.po index 5efabcd7940..e85bfc8f9d1 100644 --- a/language/Polish/strings.po +++ b/language/Polish/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -19,32 +19,32 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -53,233 +53,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -307,7 +307,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -316,7 +316,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -325,23 +325,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -361,7 +361,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -653,36 +653,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -720,86 +720,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -963,28 +984,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -992,11 +1013,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1037,7 +1058,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1054,291 +1075,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1350,23 +1544,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1389,7 +1601,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1401,27 +1613,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1494,7 +1706,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1508,7 +1720,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1519,52 +1731,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1588,482 +1800,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2077,29 +2341,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2119,211 +2383,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2430,137 +2729,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3148,7 +3525,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Portuguese/strings.po b/language/Portuguese/strings.po index bdc0ddb430e..a33f2e546f1 100644 --- a/language/Portuguese/strings.po +++ b/language/Portuguese/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2017-10-26 22:51+0100\n" "Last-Translator: pmos69\n" "Language-Team: MAME Language Team\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -27,27 +27,27 @@ msgstr "" "\n" "Pressione qualquer tecla para continuar" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" "Este driver necessita de imagens carregadas no(s) seguinte(s) " "dispositivo(s): " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -60,185 +60,185 @@ msgstr "" "Pressione ''%1$s'' para sair,\n" "Pressione ''%2$s'' para voltar à emulação." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Volume Global" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s Volume" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "Overclock CPU %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "Overclock %1$s som" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "Taxa de refrescamento do %1$s" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "Brilho do %1$s" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "Contraste do %1$s" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "Gama do %1$s" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "Extensão Horizontal do %1$s" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "Posição Horizontal do %1$s" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "Extensão Vertical do %1$s" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "Posição Vertical do %1$s" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "Extensão Horizontal do Laserdisc '%1$s'" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "Posição Horizontal do Laserdisc '%1$s'" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "Extensão Vertical do Laserdisc '%1$s'" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "Posição Vertical do Laserdisc '%1$s'" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Cintilação Vetorial" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Largura Mínima do Feixe de Luz" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Largura Máxixa do Feixe de Luz" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Peso da Intensidade do Feixe" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Escala da Mira %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Ajuste da Mira %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Escala X da Mira %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Escala Y da Mira %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Ajuste X da Mira %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Ajuste Y da Mira %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**Erro ao gravar ui.ini**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**Erro ao gravar %s.ini**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -248,7 +248,7 @@ msgstr "" " Configuração gravada \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -257,8 +257,8 @@ msgstr "" "%s\n" " adicionado à lista de favoritos." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -267,33 +267,33 @@ msgstr "" "%s\n" " removido da lista de favoritos." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d pacotes de software )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Driver: \"%1$s\" lista de software " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - Procura: %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "Procura: %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Opções de Som" @@ -321,7 +321,7 @@ msgstr "Personalizar Interface" msgid "Configure Directories" msgstr "Configurar Pastas" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[slot vazio]" @@ -330,7 +330,7 @@ msgstr "[slot vazio]" msgid "[create]" msgstr "[criar]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[lista de software]" @@ -339,23 +339,23 @@ msgstr "[lista de software]" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Seleccionar modo de acesso" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Apenas-leitura" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Leitura-e-escrita" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Ler esta imagem, escrever para outra imagem" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Ler esta imagem, escrever para diff" @@ -375,7 +375,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "Aumentar imagens no painel direito" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Cheats" @@ -667,36 +667,36 @@ msgstr "Refrescamento Sincronizado" msgid "Wait Vertical Sync" msgstr "Esperar pelo Sync Vertical" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "Ligado" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Desligado" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Automático" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Voltar à Máquina" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Sair" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Voltar ao Menu Anterior" @@ -734,86 +734,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "protecção" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "temporização" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "gráficos" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "paleta de cores" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "som" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "câmara" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "microfone" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "controlos" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "teclado" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "rato" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "disco" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "impressora" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "rede local" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "WAN" @@ -1002,28 +1023,28 @@ msgstr "Parcialmente suportado" msgid "[empty]" msgstr "[vazio]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[gestôr de ficheiros]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Alterar Ordem dos Items" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "Ordem Alterada: Entradas agora ordenadas por %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "nome curto" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "descrição" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[listas compatíveis]" @@ -1031,11 +1052,11 @@ msgstr "[listas compatíveis]" msgid "File Already Exists - Override?" msgstr "Ficheiro Já Existente - Sobrepor?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "Não" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Sim" @@ -1076,7 +1097,7 @@ msgstr "Natural" msgid "Emulated" msgstr "Emulado" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1093,189 +1114,358 @@ msgstr "Activo" msgid "Disabled" msgstr "Desactivado" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "Não filtrado" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "Disponível" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "Não disponível" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "Funcional" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "Não Funcional" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "Mecânico" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "Não Mecânico" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "Categoria" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "Favoritos" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "BIOS" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "Não BIOS" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "Originais" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "Clones" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "Fabricante" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "Ano" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "Gravação Suportada" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "Gravação Não Suportada" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "Requer CHD" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "Não Requer CHD" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "Ecrã Vertical" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "Ecrã Horizontal" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "Filtro Personalizado" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "Não filtrado" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "Disponível" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "Não disponível" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "Favoritos" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "Originais" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "Clones" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "Ano" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "Editor" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "Suportado" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "Parcialmente Suportado" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "Não Suportado" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "Região do Lançamento" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "Tipo de Dispositivo" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "Lista de Software" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "Filtro Personalizado" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "<configurar filtros>" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Selecionar filtros personalizados:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "Filtro %1$u" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Remover último filtro" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Adicionar filtro" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "Selecione categoria" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "[sem ficheiros INI de categoria]" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "[sem grupos no ficheiro INI]" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "Não foram encontrados ficheiros INI da categoria" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "Ficheiro" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "Não foram encontrados grupos no ficheiro da categoria" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "Grupo" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "Incluir clones" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Utilização de Software" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Revisão: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Reiniciar" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1284,7 +1474,7 @@ msgstr "" "Tempo de execução: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1293,7 +1483,7 @@ msgstr "" "Tempo de execução: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1302,89 +1492,93 @@ msgstr "" "Tickets emitidos: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Moeda %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Moeda %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (travado)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Atraso Visível" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml gravado na pasta de interface." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Nome: Descrição:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt na pasta de interface." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Exportar lista em formato XML (como -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" "Exportar lista em formato XML (como -listxml, mas excluindo dispositivos)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Exportar lista em formato TXT (como -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Driver" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "Esta máquina não tem BIOS." -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Adicionar aos Favoritos" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Remover dos Favoritos" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "(padrão)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Plugins" @@ -1396,23 +1590,41 @@ msgstr "Pseudo terminais" msgid "[failed]" msgstr "[falhou]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "Carregar Estado" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "Gravar Estado" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1435,7 +1647,7 @@ msgid "Other Controls" msgstr "Outros Controlos" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1447,27 +1659,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1549,7 +1761,7 @@ msgstr "" "txt no diretório docs para informação sobre a configuração de %2$s." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Configurar Opções" @@ -1563,7 +1775,7 @@ msgid "Type name or select: (random)" msgstr "Digite o nome ou selecione: (aleatório)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1574,52 +1786,52 @@ msgid "Driver: %1$-.100s" msgstr "Driver: %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "Global: NÃO FUNCIONA" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "Global: Proteção Não Emulada" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "Global: Funcional" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "Gráficos: Não Implementados, " #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Gráficos: Imperfeitos, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Gráficos: OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "Som: Sem Som" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Som: Não Implementado" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Som: Imperfeito" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Som: OK" @@ -1645,482 +1857,534 @@ msgid "Reload All" msgstr "Recarregar Tudo" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROMs" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "Ficheiros de Software" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "Interface" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Idioma" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Samples" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Miras" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DATs" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INIs" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DATs" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "INIs de Categorias" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Snapshots" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Ícones" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Painéis de Controlo" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Armários Arcade" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Folhetos" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Ecrãs Iniciais" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Traseiras" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "Placas Mãe" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "Tabuletas" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Painéis de Controlo" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Miras" +msgctxt "path-option" +msgid "PCBs" +msgstr "Placas Mãe" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Artworks" +msgctxt "path-option" +msgid "Flyers" +msgstr "Folhetos" + +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Bosses" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" -msgstr "Amostra de Artworks" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "Selecção" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "Fim do Jogo" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "Como Fazer" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Logos" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Placares" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Versus" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Capas" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Configurar Pastas" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Pastas %1$s Atuais" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Mudar Pasta" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Adicionar Pasta" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Remover Pasta" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "Mudar Pasta %1$s - Procura: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "Adicionar Pasta %1$s - Procura: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Pressione TAB para definir" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "Remover Pasta %1$s" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " CORES" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " CANETAS" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Configurar Máquina" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "Romset\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "Ano\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "Fabricante\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "Driver é Clone de\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "Driver é Principal\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "Controlos Analógicos\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "Entradas de Teclado\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "Global\tNÃO FUNCIONAL\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "Global\tProteção não Emulada\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "Global\tFuncional\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "Gráficos\tNão Implementados\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "Gráficos\tCores Erradas\n" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "Gráficos\tCores Imperfeitas\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "Gráficos\tImperfeitos\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "Gráficos\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "Som\tSem Som\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "Som\tNão Implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "Som\tImperfeito\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "Som\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "Câmara\tNão Implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "Câmara\tImperfeita\n" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "Microfone\tNão Implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "Microfone\tImperfeito\n" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "Controlos\tNão Implementados\n" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "Controlos\tImperfeitos\n" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "Teclado\tNão Implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "Teclado\tImperfeito\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "Rato\tNão Implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "Rato\tImperfeito\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "Disco\tNão Implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "Disco\tImperfeito\n" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "Impressora\tNão Implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "Impressora\tImperfeita\n" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "Rede Local\tNão Implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "Rede Local\tImperfeita\n" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "WAN\tNão Implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "WAN\tImperfeita\n" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "Temporização\tNão Implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "Temporização\tImperfeita\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "Máquina Mecânica\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "Máquina Mecânica\tNão\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "Requer Artwork\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "Requer Artwork\tNão\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "Requer Artwork Clicável\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "Requer Artwork Clicável\tNão\n" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "Suporta Cocktail\tNão\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "Driver é BIOS\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "Driver é BIOS\tNão\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "Suporta Gravação\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "Suporta Gravação\tNão\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "Orientação de Ecrã\tVertical\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "Orientação de Ecrã\tHorizontal\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "Requer CHD\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "Requer CHD\tNão\n" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "Resultado da Audit à ROM\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "Resultado da Audit à ROM\tFALHA\n" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "Resultado da Audit às Samples\tNenhuma Necessária\n" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "Resultado da Audit às Samples\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "Resultado da Audit às Samples\tFALHA\n" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d máquinas (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "Romset: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "Sistema: %1$-.100s" @@ -2134,22 +2398,22 @@ msgstr "Lista de Seleção - Procurar: " msgid "Double click or press %1$s to select" msgstr "Clique duas vezes ou pressione %1$s para selecionar" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "Auditar ROMs de %1$u máquinas marcadas como indisponíveis?" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "Auditar ROMs de todas as %1$u máquinas?" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(os resultados serão gravados em %1$s)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" @@ -2158,7 +2422,7 @@ msgstr "" "Auditando ROMs da máquina %2$u de %3$u...\n" "%1$s" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "Começar Audit" @@ -2178,212 +2442,247 @@ msgstr "Esconder Info/Imagem" msgid "Hide Both" msgstr "Esconder Ambos" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Fontes" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Cores" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Idioma" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Mostrar painéis laterais" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Configurações personalizadas da interface" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "padrão" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Fonte da interface" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Negrito" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Itálico" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Linhas" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Tamanho do texto das Infos" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Configurações das Fontes" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "Exemplo de texto - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Texto normal" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Côr seleccionada" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Fundo do texto normal" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Côr de fundo seleccionada" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Côr do sub-item" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Clone" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Borda" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Fundo" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "Dipswitch" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Côr indisponível" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Cor dos controlos deslizantes" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Fundo do visualizador Gfx" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Cor do rato-sobre" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Cor de fundo do rato-sobre" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Cor do rato-premido" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Cor de fundo do rato-premido" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Restaurar cores originais" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Configurações de Cores da Interface" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "Duplo-clique ou pressione %1$s para mudar o valor da cor" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Pré-Visualização do Menu" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Normal" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Sub-Item" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Seleccionado" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Rato-Sobre" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "Configurações ARGB" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Opacidade" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Vermelho" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Verde" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Azul" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Escolha da paleta" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Pré-Visualização de côr =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Branco" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Prateado" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Cinzento" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Preto" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Vermelho" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Laranja" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Amarelo" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Verde" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Azul" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Violeta" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2490,137 +2789,215 @@ msgid "Select New Machine" msgstr "Seleccionar Nova Máquina" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Painéis de Controlo" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Snapshots" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "Placa Mãe" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "Folheto" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Pré-Visualização da Artwork" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Bosses" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Versus" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Fim de Jogo" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Como Fazer" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Placares" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "Tabuleta" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Capas" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Adicionar ou remover favoritos" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Exportar lista visível para ficheiro" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "Exibir visualização de DATs" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Selecção de Item de Software:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "Selecção de BIOS:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "O Software é clone de: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "O Software é original" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Suportado: Não" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Suportado: Parcial" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Suportado: Sim" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "O Driver é clone de: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "Romset: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "O Driver é original" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "O Driver é clone de: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Imagens" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Infos" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "Pressione qualquer tecla para continuar" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Utilização" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Info Geral" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Som" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Frequência de Amostragem" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Utilizar Samples Externas" @@ -3212,7 +3589,7 @@ msgstr "MARPScore" msgid "Gameinit" msgstr "Gameinit" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Histórico" @@ -3236,18 +3613,78 @@ msgstr "MESSinfo" msgid "MAMEinfo" msgstr "MAMEinfo" -#~ msgid "Backdrops" -#~ msgstr "Fundos" +#~ msgid "Custom UI Settings" +#~ msgstr "Configurações personalizadas da interface" + +#~ msgid "Software Usage" +#~ msgstr "Utilização de Software" + +#~ msgid "Usage" +#~ msgstr "Utilização" -#~ msgid "Overlays" -#~ msgstr "Sobreposições" +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "Interface" -#~ msgid "Bezels" -#~ msgstr "Molduras" +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Idioma" -#~ msgid "CPanels" +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Samples" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Cheats" + +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "Ecrãs Iniciais" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "Traseiras" + +#~ msgctxt "path-option" +#~ msgid "Artworks" +#~ msgstr "Artworks" + +#~ msgctxt "path-option" +#~ msgid "Artworks Preview" +#~ msgstr "Amostra de Artworks" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "Fim do Jogo" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Cabinets" +#~ msgstr "Armários Arcade" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Control Panels" #~ msgstr "Painéis de Controlo" +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "Ecrãs Iniciais" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Traseiras" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Logos" +#~ msgstr "Logos" + +#~ msgid "Select" +#~ msgstr "Selecção" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "romset: %1$-.100s" + #~ msgid "View" #~ msgstr "Vista" @@ -3342,21 +3779,6 @@ msgstr "MAMEinfo" #~ msgid "Artwork Crop" #~ msgstr "Crop de Artwork" -#~ msgid "Use Backdrops" -#~ msgstr "Usar Fundos" - -#~ msgid "Use Overlays" -#~ msgstr "Usar Sobreposições" - -#~ msgid "Use Bezels" -#~ msgstr "Usar Molduras" - -#~ msgid "Use Control Panels" -#~ msgstr "Usar painéis de Controlo" - -#~ msgid "Use Marquees" -#~ msgstr "Usar Tabuletas" - #~ msgid "Bilinear snapshot" #~ msgstr "Snapshot Bi-linear" diff --git a/language/Portuguese_Brazil/strings.po b/language/Portuguese_Brazil/strings.po index 23dab25cc8c..12a27f7148f 100644 --- a/language/Portuguese_Brazil/strings.po +++ b/language/Portuguese_Brazil/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2021-07-02 11:50-0300\n" "Last-Translator: Felipe <felipefplzx@gmail.com>\n" "Language-Team: MAME Language Team\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 3.0\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -29,13 +29,13 @@ msgstr "" "\n" "Pressione qualquer tecla para continuar" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" "Este driver requer que as imagens sejam carregadas no(s) seguinte(s) " "dispositivo(s): " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" @@ -44,7 +44,7 @@ msgstr "" "Controles da IU ativados\n" "Use o %1$s pra alternar" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" @@ -53,7 +53,7 @@ msgstr "" "Controles da IU desativados\n" "Use o %1$s pra alternar" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -66,185 +66,185 @@ msgstr "" "Pressione ''%1$s'' pra sair,\n" "Pressione ''%2$s'' pra retornar pra emulação." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Volume Mestre" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "Volume %1$s" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "Overclock da CPU %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "Overclock do som %1$s" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "Taxa de Atualização da %1$s" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "Brilho da %1$s" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "Contraste da %1$s" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "Gama da %1$s" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "Extensão Horizontal da %1$s" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "Posição Horizontal da %1$s" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "Extensão Vertical da %1$s" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "Posição Vertical da %1$s" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "Laserdisc '%1$s' Extensão Horizontal" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "Laserdisc '%1$s' Posição Horizontal" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "Laserdisc '%1$s' Extensão Vertical" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "Laserdisc '%1$s' Posição Vertical" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Tremulação Vetorial" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Largura Mínima do Beam" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Largura Máxima do Beam" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "Tamanho do Ponto do Beam" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Peso da Intensidade do Beam" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Escala da Mira da %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Deslocamento da Mira %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Escala da Mira X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Escala da Mira Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Deslocamento da Mira X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Deslocamento da Mira Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**Erro ao salvar o ui.ini**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**Erro ao salvar o %s.ini**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -254,7 +254,7 @@ msgstr "" " Configuração salva \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -263,8 +263,8 @@ msgstr "" "%s\n" " adicionado a lista dos favoritos." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -273,33 +273,33 @@ msgstr "" "%s\n" " removido da lista dos favoritos." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d pacotes do software )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Driver: \"%1$s\" lista de softwares " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - Busca: %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "Busca: %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Opções de Som" @@ -327,7 +327,7 @@ msgstr "Personalizar a IU" msgid "Configure Directories" msgstr "Configurar Diretórios" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[slot vazio]" @@ -336,7 +336,7 @@ msgstr "[slot vazio]" msgid "[create]" msgstr "[criar]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[lista de software]" @@ -345,23 +345,23 @@ msgstr "[lista de software]" msgid "Error accessing %s" msgstr "Erro ao acessar o %s" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Selecione o modo de acesso" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Somente-leitura" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Somente-gravação" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Ler esta imagem, gravar pra outra imagem" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Ler esta imagem, gravar pra diff" @@ -381,7 +381,7 @@ msgstr "Re-selecionar a última máquina executada" msgid "Enlarge images in the right panel" msgstr "Aumentar as imagens no painel direito" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Trapaças" @@ -673,36 +673,36 @@ msgstr "Atualização Sincronizada" msgid "Wait Vertical Sync" msgstr "Aguardar Sincronização Vertical" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "Ligado" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Desligado" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Automático" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "Iniciar Máquina" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Retorna pra Máquina" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Sair" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Retornar pro Menu Anterior" @@ -740,86 +740,107 @@ msgid "Cannot change options while recording!" msgstr "Não pode mudar as opções quando gravar!" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "proteção" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "cronometragem" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "gráficos" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "paleta das cores" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "som" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "capturar hardware" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "câmera" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "microfone" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "controles" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "teclado" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "mouse" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "mídia" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "disco" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "impressora" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "fita magnética" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "punch tape" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "bateria magnética" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "armazenamento em estado sólido" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "comunicações" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "LAN" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "WAN" @@ -1012,28 +1033,28 @@ msgstr "Parcialmente suportado" msgid "[empty]" msgstr "[vazio]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[gerenciador de arquivos]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Trocar a Ordem dos Itens" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "Ordem Trocada: entradas agora ordenadas por %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "nome curto" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "descrição" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[listas compatíveis]" @@ -1041,11 +1062,11 @@ msgstr "[listas compatíveis]" msgid "File Already Exists - Override?" msgstr "O Arquivo já Existe - Sobrescrever?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "Não" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Sim" @@ -1086,7 +1107,7 @@ msgstr "Natural" msgid "Emulated" msgstr "Emulado" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "%1$s [root%2$s]" @@ -1103,189 +1124,358 @@ msgstr "Ativado" msgid "Disabled" msgstr "Desativado" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "Não Filtrado" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "Disponível" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "Indisponível" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "Funcionando" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "Não Funcionando" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "Mecânico" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "Não Mecânico" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "Categoria" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "Favoritos" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "BIOS" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "Sem BIOS" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "Pais" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "Clones" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "Fabricante" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "Ano" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "Com Suporte a Salvamento" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "Sem Suporte a Salvamento" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "CHD Requerido" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "Nenhum CHD Requerido" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "Tela Vertical" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "Tela Horizontal" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "Filtro Personalizado" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "Não Filtrado" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "Disponível" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "Indisponível" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "Favoritos" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "Pais" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "Clones" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "Ano" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "Editor" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "Suportado" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "Parcialmente Suportado" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "Não Suportado" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "Região do Lançamento" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "Tipo de Dispositivo" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "Lista de Softwares" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "Filtro Personalizado" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "<configurar filtros>" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Selecionar filtros personalizados:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "Filtro %1$u" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Remover o último filtro" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Adicionar filtro" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "Selecionar categoria:" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "[arquivos INI sem categoria]" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "[sem grupos no arquivo INI]" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "Nenhum arquivo INI contendo categorias foi achado" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "Arquivo" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "Nenhum grupo achado no arquivo das categorias" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "Grupo" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "Incluir clones" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Uso do Software" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Revisão: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Resetar" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1294,7 +1484,7 @@ msgstr "" "Tempo de operação: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1303,7 +1493,7 @@ msgstr "" "Tempo de operação: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1312,89 +1502,93 @@ msgstr "" "Bilhetes distribuídos: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Ficha %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Ficha %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (travado)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "Visibilidade do P%d" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "Mira do P%d" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Atraso Visível" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "O %s.xml foi salvo na pasta da ui." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Nome: Descrição:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "O %s.txt foi salvo na pasta da ui." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Exportar lista no formato XML (tipo -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" "Exportar lista no formato XML (tipo -listxml, mas excluindo os dispositivos)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Exportar lista no formato TXT (tipo -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Driver" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "Esta máquina não tem BIOS." -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Adicionar aos Favoritos" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Remover dos Favoritos" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "Salvar a Configuração da Máquina" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "Configurar Máquina:" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (padrão)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Plugins" @@ -1406,23 +1600,41 @@ msgstr "Pseudo terminais" msgid "[failed]" msgstr "[falhou]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "Não foram achados save states" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "Carregar State" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "Selecione o state pra carregar" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "Salvar State" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" "Pressione uma tecla ou botão de joystick ou selecione o state pra " @@ -1447,8 +1659,8 @@ msgid "Other Controls" msgstr "Outros Controles" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." -msgstr "Esta máquina não tem mapa da entrada." +msgid "This machine has no configurable inputs." +msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 msgid "Pressed" @@ -1459,27 +1671,27 @@ msgstr "Pressionado" msgid "Invalid sequence entered" msgstr "Sequência inválida inserida" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "[root%1$s]" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "Pressione o %1$s pra configurar\n" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "Pressione o %1$s pra anexar\n" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "Pressione o %1$s pra limpar\n" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "Pressione o %1$s pra restaurar o padrão\n" @@ -1563,7 +1775,7 @@ msgstr "" "txt no diretório dos documentos para informação sobre a configuração do %2$s." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Opções da Configuração" @@ -1577,7 +1789,7 @@ msgid "Type name or select: (random)" msgstr "Digite o nome ou selecione: (aleatório)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1588,52 +1800,52 @@ msgid "Driver: %1$-.100s" msgstr "Driver: %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "Geral: NÃO FUNCIONA" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "Geral: Proteção Não Emulada" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "Geral: Funcionando" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "Gráficos: Não Implementados, " #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Gráficos: Imperfeitos, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Gráficos: OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "Som: Nenhum" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Som: Não Implementado" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Som: Imperfeito" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Som: OK" @@ -1659,466 +1871,523 @@ msgid "Reload All" msgstr "Recarregar Tudo" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROMs" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "Mídia do Software" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "IU" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Idioma" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "Trabalhos de Arte" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Amostras" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Miras" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DATs" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INIs" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DATs" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "INIs da Categoria" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Snapshots" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Ícones" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Painéis de Controle" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Gabinetes" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Panfletos" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Títulos" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Finais" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "PCBs" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "Marquises" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Painéis de Controle" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Miras" +msgctxt "path-option" +msgid "PCBs" +msgstr "PCBs" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Trabalhos de Arte" +msgctxt "path-option" +msgid "Flyers" +msgstr "Panfletos" + +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Chefes" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" msgstr "Pré-Visualização dos Trabalhos das Artes" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "Selecionar" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "Fim do Jogo" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "Como Fazer" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Logos" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Pontuações" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Versus" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Capas" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Configuração das Pastas" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "%1$s Pastas Atuais" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Mudar a Pasta" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Adicionar Pasta" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Remover Pasta" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "Mudar %1$s Pasta - Busca: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "Adicionar %1$s Pasta - Busca: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Pressione TAB pra configurar" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "Remover a Pasta %1$s" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " CORES" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " CANETAS" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Configurar a Máquina" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "Romset\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "Ano\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "Fabricante\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "O Driver é Clone do\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "O Driver é Pai\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "Controles Analógicos\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "Entradas do Teclado\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "Geral\tNÃO FUNCIONANDO\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "Geral\tProteção não Emulada\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "Geral\tFuncionando\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "Gráficos\tNão Implementados\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "Graficos\tCores Erradas\n" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "Gráficos\tCores Imperfeitas\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "Gráficos\tImperfeitos\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "Gráficos\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "Som\tNenhum\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "Som\tNão Implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "Som\tImperfeito\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "Som\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "Captura\tNão Implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "Captura\tImperfeita\n" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "Câmera\tNão Implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "Câmera\tImperfeita\n" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "Microfone\tNão Implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "Microfone\tImperfeito\n" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "Controles\tNão Implementados\n" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "Controles\tImperfeitos\n" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "Teclado\tNão Implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "Teclado\tImperfeito\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "Mouse\tNão Implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "Mouse\tImperfeito\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "Mídia\tNão Implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "Mídia\tImperfeita\n" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "Disco\tNão Implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "Disco\tImperfeito\n" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "Impressora\tNão Implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "Impressora\tImperfeita\n" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "Fita Magnética\tNão Implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "Fita Magnética\tImperfeita\n" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "Punch Tape\tNão Implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "Punch Tape\tImperfeita\n" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "Bateria Magnética\tNão Implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "Bateria Magnética\tImperfeita\n" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "(EP)ROM\tNão Implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "(EP)ROM\tImperfeito\n" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "Comunicações\tNão Implementadas\n" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "Comunicações\tImperfeitas\n" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "LAN\tNão Implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "LAN\tImperfeita\n" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "WAN\tNão Implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "WAN\tImperfeita\n" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "Cronometragem\tNão Implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "Cronometragem\tImperfeita\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "Máquina Mecânica\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "Máquina Mecânica\tNão\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "Requer Trabalho de Arte\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "Requer Trabalho de Arte\tNão\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "Requer Arte Clicável\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "Requer Arte Clicável\tNão\n" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "Suporte ao Coquetel\tNão\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "O Driver é BIOS\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "O Driver é BIOS\tNão\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "Suporte pro Salvamento\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "Suporte pro Salvamento\tNão\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "Orientação da Tela\tVertical\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "Orientação da Tela\tHorizontal\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "Requer CHD\tSim\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "Requer CHD\tNão\n" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "Resultado da Auditoria da ROM\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "Resultado da Auditoria da ROM\tRUIM\n" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "Resultado da Auditoria das Amostras\tNenhuma Necessária\n" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "Resultado da Auditoria das Amostras\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "Resultado da Auditoria das Amostras\tRUIM\n" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" @@ -2126,17 +2395,12 @@ msgstr "" "Auditoria da ROM \tDesativada\n" "Auditoria das Amostras \tDesativada\n" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d máquinas (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "Romset: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "Sistema: %1$-.100s" @@ -2150,22 +2414,22 @@ msgstr "Lista de Seleção - Busca: " msgid "Double click or press %1$s to select" msgstr "Clique duplo ou pressione %1$s pra selecionar" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "Auditar as ROMS pra %1$u máquinas marcadas como indisponíveis?" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "Auditar as ROMs pra toda as %1$u máquinas?" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(os resultados serão salvos em %1$s)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" @@ -2174,7 +2438,7 @@ msgstr "" "Auditando as ROMs para a máquina %2$u de %3$u...\n" "%1$s" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "Iniciar Auditoria" @@ -2194,212 +2458,247 @@ msgstr "Esconder Info/Imagem" msgid "Hide Both" msgstr "Esconder Ambos" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Fontes" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Cores" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Idioma" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Mostrar os painéis laterais" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Configurações Personalizadas da IU" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "padrão" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Fonte da IU" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Negrito" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Itálico" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Linhas" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Tamanho do texto das informações" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Configurações das Fontes da IU" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "Texto de amostra - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Texto normal" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Cor selecionada" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Fundo do texto normal" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Cor de fundo selecionada" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Cor do sub-item" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Clone" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Borda" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Cenário de fundo" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "Dipswitch" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Cor indisponível" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Cor do slider" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Fundo do visualizador dos GFX" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Mouse sobre a cor" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Mouse sobre a cor de fundo" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Cor da subposição do mouse" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Cor da subposição do cenário do fundo do mouse" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Restaurar as cores originais" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Configurações das Cores da IU" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "Clique duplo ou pressione %1$s pra mudar o valor da cor" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Pré-Visualização do Menu" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Normal" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Sub-item" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Selecionado" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Sobreposição do Mouse" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "Configurações do ARGB" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Alpha" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Vermelho" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Verde" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Azul" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Escolher da paleta" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Pré-visualização da cor =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Branco" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Prata" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Cinza" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Preto" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Vermelho" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Laranja" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Amarelo" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Verde" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Azul" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Violeta" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2430,7 +2729,7 @@ msgstr "Controles Analógicos" #: src/frontend/mame/ui/mainmenu.cpp:71 msgid "DIP Switches" -msgstr "DIP Switches" +msgstr "Chaves DIP" #: src/frontend/mame/ui/mainmenu.cpp:73 msgid "Machine Configuration" @@ -2506,81 +2805,159 @@ msgid "Select New Machine" msgstr "Selecionar Nova Máquina" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Painéis de Controle" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Snapshots" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "Gabinete" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "Painel de controle" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "PCB" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "Panfleto" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Pré-Visualização do Trabalho de Arte" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Chefes" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Versus" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Fim do Jogo" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Como Fazer" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Pontuações" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Capas" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Adicionar ou remover favoritos" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Exportar lista exibida pro arquivo" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "Mostrar visualização dos DATs" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Seleção da parte do software:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "Seleção da BIOS:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "O software é clone de: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "O software é pai" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Suportado: Não" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Suportado: Parcial" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Suportado: Sim" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "O Driver é clone de: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "Romset: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "O driver é pai" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "O Driver é clone de: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Imagens" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Informações" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" @@ -2591,7 +2968,7 @@ msgstr "" "selecione um sistema diferente.\n" "\n" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" @@ -2602,49 +2979,49 @@ msgstr "" "selecione um item de software diferente.\n" "\n" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "checksum incorreto" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "tamanho incorreto" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "não foi achado" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "%1$s (%2$s) - %3$s\n" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "%1$s - %2$s\n" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "Pressione qualquer tecla pra continuar." -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Uso" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Informações Gerais" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Som" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Taxa das Amostras" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Usar Amostras Externas" @@ -3253,7 +3630,7 @@ msgstr "MARPScore" msgid "Gameinit" msgstr "Gameinit" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Histórico" @@ -3277,17 +3654,65 @@ msgstr "MESSinfo" msgid "MAMEinfo" msgstr "MAMEinfo" -#~ msgid "Backdrops" -#~ msgstr "Planos de fundo" +#~ msgid "Custom UI Settings" +#~ msgstr "Configurações Personalizadas da IU" + +#~ msgid "Software Usage" +#~ msgstr "Uso do Software" + +#~ msgid "Usage" +#~ msgstr "Uso" -#~ msgid "Overlays" -#~ msgstr "Sobreposição" +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "IU" -#~ msgid "Bezels" -#~ msgstr "Molduras" +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Idioma" -#~ msgid "CPanels" -#~ msgstr "CPanels" +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Amostras" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Trapaças" + +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "Títulos" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "Finais" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "Fim do Jogo" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "Títulos" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Finais" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Logos" +#~ msgstr "Logos" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Marquees" +#~ msgstr "Marquises" + +#~ msgid "This machine has no input map." +#~ msgstr "Esta máquina não tem mapa da entrada." + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "romset: %1$-.100s" #~ msgid "View" #~ msgstr "Visualizar" @@ -3298,9 +3723,6 @@ msgstr "MAMEinfo" #~ msgid "Full" #~ msgstr "Cheio" -#~ msgid "Dip Switches" -#~ msgstr "Chaves DIP" - #~ msgid "Select position to load from" #~ msgstr "Selecione a posição para carregar de" @@ -3384,52 +3806,9 @@ msgstr "MAMEinfo" #~ msgid "Artwork Crop" #~ msgstr "Recorte da Arte" -#~ msgid "Use Backdrops" -#~ msgstr "Usar Plano de Fundo" - -#~ msgid "Use Overlays" -#~ msgstr "Usar Sobreposições" - -#~ msgid "Use Bezels" -#~ msgstr "Usar Molduras" - -#~ msgid "Use Control Panels" -#~ msgstr "Usar Painéis de Controle" - -#~ msgid "Use Marquees" -#~ msgstr "Usar Marquises" - #~ msgid "Bilinear snapshot" #~ msgstr "Retrato bilinear" -#, c-format -#~ msgid " %1$d×%2$s %3$d.%4$06d MHz\n" -#~ msgstr " %1$d×%2$s %3$d.%4$06d MHz\n" - -#~ msgid " %1$d×%2$s %5$d.%6$03d kHz\n" -#~ msgstr " %1$d×%2$s %5$d.%6$03d kHz\n" - -#~ msgid " %2$s %3$d.%4$06d MHz\n" -#~ msgstr " %2$s %3$d.%4$06d MHz\n" - -#~ msgid " %2$s %5$d.%6$03d kHz\n" -#~ msgstr " %2$s %5$d.%6$03d kHz\n" - -#, c-format -#~ msgid " Screen '%1$s': %2$d × %3$d (V) %4$f Hz\n" -#~ msgstr " Tela '%1$s': %2$d × %3$d (V) %4$f Hz\n" - -#, c-format -#~ msgid " Screen '%1$s': %2$d × %3$d (H) %4$f Hz\n" -#~ msgstr " Tela '%1$s': %2$d × %3$d (H) %4$f Hz\n" - -#, c-format -#~ msgid " %1$d×%2$s\n" -#~ msgstr " %1$d×%2$s\n" - -#~ msgid " %2$s\n" -#~ msgstr " %2$s\n" - #~ msgid "" #~ "The software selected is missing one or more required ROM or CHD images. " #~ "Please select a different one." @@ -3559,35 +3938,3 @@ msgstr "MAMEinfo" #~ msgid "Test cheat at addr %08X" #~ msgstr "Testar a trapaça no endr %08X" - -#~ msgid "" -#~ "ROM Audit Disabled\t\n" -#~ "Samples Audit Disabled\t\n" -#~ msgstr "" -#~ "Auditoria de ROM Desabilitada\t\n" -#~ "Auditoria de Amostras Desabilitada\t\n" - -#~ msgid "Roms Audit Pass\tOK\n" -#~ msgstr "Condição das Roms\tBOA\n" - -#~ msgid "Roms Audit Pass\tBAD\n" -#~ msgstr "Condição das Roms \tRUIM\n" - -#~ msgid "Samples Audit Pass\tNone Needed\n" -#~ msgstr "Condição das Amostras\tNenhuma Necessária\n" - -#~ msgid "Samples Audit Pass\tOK\n" -#~ msgstr "Condição das Amostras\tBOA\n" - -#~ msgid "Samples Audit Pass\tBAD\n" -#~ msgstr "Condição das Amostras\tRUIM\n" - -#~ msgid "" -#~ "Roms Audit Pass\tDisabled\n" -#~ "Samples Audit Pass\tDisabled\n" -#~ msgstr "" -#~ "Aferição de Roms\tDesativado\n" -#~ "Aferição das Amostras\tDesativado\n" - -#~ msgid "Gfx: %s, Sound: %s" -#~ msgstr "Gfx: %s, Som: %s" diff --git a/language/Romanian/strings.po b/language/Romanian/strings.po index 669d7e3faa8..3a3df18662a 100644 --- a/language/Romanian/strings.po +++ b/language/Romanian/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -19,32 +19,32 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -53,233 +53,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -307,7 +307,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -316,7 +316,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -325,23 +325,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -361,7 +361,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -653,36 +653,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -720,86 +720,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -963,28 +984,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -992,11 +1013,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1037,7 +1058,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1054,291 +1075,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1350,23 +1544,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1389,7 +1601,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1401,27 +1613,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1494,7 +1706,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1508,7 +1720,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1519,52 +1731,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1588,482 +1800,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2077,29 +2341,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2119,211 +2383,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2430,137 +2729,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3148,7 +3525,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Russian/strings.po b/language/Russian/strings.po index f250ef545f3..8e14615671f 100644 --- a/language/Russian/strings.po +++ b/language/Russian/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2017-10-23 16:22+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -29,25 +29,25 @@ msgstr "" "\n" "Нажмите любую клавишу для продолжения" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "Этот драйвер требует загрузки образов в следующие устройства: " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -60,185 +60,185 @@ msgstr "" "Нажмите ''%1$s'' для выхода,\n" "Нажмите ''%2$s'' для возврата к эмуляции." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Общая громкость" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s Громкость" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "Разгон процессора %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "Разгон %1$s звука" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s Частота обновления" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s Яркость" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s Контраст" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s Гамма" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s гориз. размер" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s гориз. позиция" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s верт. размер" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s верт. позиция" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "Лазердиск '%1$s' гориз. размер" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "Лазердиск '%1$s' гориз. позиция" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "Лазердиск '%1$s' верт. размер" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "Лазердиск '%1$s' верт. позиция" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Мерцание луча" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Минимальная ширина луча" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Максимальная ширина луча" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Насыщенность луча" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Масштаб прицела %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Смещение прицела %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3dдБ" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Масштаб прицела X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Масштаб прицела Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Смещение прицела X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Смещение прицела Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**Ошибка сохранения ui.ini**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**Ошибка сохранения %s.ini**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -248,7 +248,7 @@ msgstr "" " Настройки сохранены \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -257,8 +257,8 @@ msgstr "" "%s\n" " добавлен в список избранного." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -267,33 +267,33 @@ msgstr "" "%s\n" " убран из списка избранного." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d пакетов программ )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Драйвер: \"%1$s\" списков программ " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - Поиск: %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "Поиск: %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Настройки звука" @@ -321,7 +321,7 @@ msgstr "Настройка интерфейса" msgid "Configure Directories" msgstr "Настройки путей" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[пустой слот]" @@ -330,7 +330,7 @@ msgstr "[пустой слот]" msgid "[create]" msgstr "[создать]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[список ПО]" @@ -339,23 +339,23 @@ msgstr "[список ПО]" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Выберите режим доступа" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Только чтение" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Чтение-запись" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Чтение из этого образа, запись в другой" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Чтение из этого образа, запись в diff" @@ -375,7 +375,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "Увеличивать изображения на правой панели" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Читы" @@ -667,36 +667,36 @@ msgstr "Синхронизированное обновление" msgid "Wait Vertical Sync" msgstr "Ожидать вертикальную синхронизацию" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "Вкл" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Выкл" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Авто" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Возврат к эмуляции" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Выход" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Возврат в предыдущее меню" @@ -734,86 +734,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "защита" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "скорость" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "графика" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "цветовая палитра" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "звук" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "камера" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "микрофон" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "управление" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "клавиатура" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "мышь" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "диск" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "принтер" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "Локальная сеть" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "Удаленная сеть" @@ -1002,28 +1023,28 @@ msgstr "Частично поддерживается" msgid "[empty]" msgstr "[пусто]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[менеджер файлов]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Сменить порядок элементов" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "Изменен порядок: записи теперь упорядочены по %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "сокращенное имя" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "описание" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[совместимые списки]" @@ -1031,11 +1052,11 @@ msgstr "[совместимые списки]" msgid "File Already Exists - Override?" msgstr "Файл уже существует - Заменить?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "Нет" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Да" @@ -1076,7 +1097,7 @@ msgstr "Обычная" msgid "Emulated" msgstr "Эмулируется" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1093,189 +1114,358 @@ msgstr "Включен" msgid "Disabled" msgstr "Выключен" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "Программист" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "Дата выхода" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "Без фильтра" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "Имеющиеся" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "Отсутсвующие" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "Работают" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "Не работают" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "Механические" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "Не механические" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "Категории" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "Избранное" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "BIOS" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "Не BIOS" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "Производитель" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "Год" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "Есть сохранения" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "Нет сохранений" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "Требуют CHD" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "Не требуют CHD" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "Вертикальный экран" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "Горизонтальный экран" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "Пользовательский фильтр" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "Без фильтра" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "Имеющиеся" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "Отсутсвующие" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "Избранное" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "Год" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "Издатель" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "Поддерживается" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "Частично поддерживается" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "Не поддерживается" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "Регион распространения" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "Тип устройства" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "Список ПО" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "Пользовательский фильтр" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "<настроить фильтры>" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Выберите пользовательские фильтры:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "Фиьтр %1$u" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Удалить последний фильтр" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Добавить фильтр" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "Выберите категорию:" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "[INI-файлы без категорий]" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "[нет групп в INI-файле]" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "Не найдены INI-файлы категорий" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "Файл" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "Не найдены группы в файле категорий" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "Группа" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "Включить clones" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Использование ПО" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Ревизия: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Сброс" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1284,7 +1474,7 @@ msgstr "" "Время работы: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1293,7 +1483,7 @@ msgstr "" "Время работы: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1302,89 +1492,93 @@ msgstr "" "Выдано билетов: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Монетоприемник %1$c: НД%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Монетоприемник %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (закрыт)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Видимая задержка" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml сохранен в папку ui." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Имя: Описание:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt сохранен в папку ui." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Экспортировать список в формате XML (как -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" "Экспортировать список в формате XML (как -listxml, но исключить устройства)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Экспортировать список в текстовом формате (как -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Драйвер" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "У этой системы нет BIOS." -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Добавить в Избранное" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Удалить из Избранного" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (по-умолчанию)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Плагины" @@ -1396,23 +1590,41 @@ msgstr "Псевдо-терминалы" msgid "[failed]" msgstr "[не удалось]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "Загрузить сохранение" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "Записать сохранение" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1435,7 +1647,7 @@ msgid "Other Controls" msgstr "Дополнительное управление" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1447,27 +1659,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1549,7 +1761,7 @@ msgstr "" "txt в директории docs, чтобы получить информацию о настройке %2$s." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Изменение настроек" @@ -1563,7 +1775,7 @@ msgid "Type name or select: (random)" msgstr "Введите имя или выберите: (случайно)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1574,52 +1786,52 @@ msgid "Driver: %1$-.100s" msgstr "Драйвер: %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "В целом: НЕ РАБОТАЕТ" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "В целом: Не эмулируется защита" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "В целом: Работает" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "Графика: Не эмулируется, " #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Графика: Не идеально, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Графика: OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "Звук: Отсутствует" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Звук: Не эмулируется" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Звук: Не идеально" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Звук: OK" @@ -1645,482 +1857,534 @@ msgid "Reload All" msgstr "Перезагрузить все" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROMы" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "Носители Информации" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "Интерфейс" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Язык" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "Элементы оформления" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Сэмплы" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Прицелы" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DAT-файлы" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INI-файлы" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DAT-файлы" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "INI категорий" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Снимки экрана" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Иконки" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Снимки экрана" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Панели управления" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Кабинеты" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Буклеты" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Титулы" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Концовки" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "Платы" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "Маркизы" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Панели управления" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Прицелы" +msgctxt "path-option" +msgid "PCBs" +msgstr "Платы" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Элементы оформления" +msgctxt "path-option" +msgid "Flyers" +msgstr "Буклеты" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Боссы" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" msgstr "Предпросмотр оформления" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "Выбор" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "КонецИгры" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "Обучение" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Логотипы" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Таблицы рекордов" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Против" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Обложки" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Установки папок" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Текущий %1$s Папок" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Изменить папку" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Добавить папку" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Удалить папку" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "Изменить папку %1$s - Поиск: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "Добавить папку %1$s - Поиск: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Нажмите TAB для выбора" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "Убрать папку %1$s" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " ЦВЕТА" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " ПЕРЬЯ" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Настройки системы" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "ROM-набор\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "Год\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "Производитель\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "Драйвер - Clone от\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "Драйвер - Parent\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "Аналоговое управление\tДа\n" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "Ввод с клавиатуры\tДа\n" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "В целом\tНЕ РАБОТАЕТ\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "В целом\tНе эмулируется защита\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "В целом\tРаботает\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "Графика\tНе эмуируется\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "Графика\tНе верные цвета\n" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "Графика\tНе точные цвета\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "Графика\tНе идеально\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "Графика\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "Звук\tОтсутствует\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "Звук\tНе эмулируется\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "Звук\tНе идеально\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "Звук\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "Камера\tНе эмулируется\n" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "Камера\tНе идеально\n" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "Микрофон\tНе эмулируется\n" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "Микрофон\tНе идеально\n" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "Управление\tНе эмулируется\n" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "Управление\tНе идеально\n" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "Клавиатура\tНе эмулируется\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "Клавиатура\tНе идеально\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "Мышь\tНе эмулируется\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "Мышь\tНе идеально\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "Диск\tНе эмулируется\n" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "Диск\tНе идеально\n" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "Принтер\tНе эмулируется\n" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "Принтер\tНе идеально\n" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "Локальная сеть\tНе эмулируется\n" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "Локальная сеть\tНе идеально\n" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "Удаленная сеть\tНе эмулируется\n" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "Удаленная сеть\tНе идеально\n" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "Скорость\tНе эмулируется\n" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "Скорость\tНе идеально\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "Механическая система\tДа\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "Механическая система\tНет\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "Требует элементы оформления\tДа\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "Требует элементы оформления\tНет\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "Требует кликабельное оформление\tДа\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "Требует кликабельное оформление\tНет\n" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "Поддерживает режим коктейль-стола\tНет\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "Драйвер - BIOS\tДа\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "Драйвер - BIOS\tНет\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "Поддерживает сохранение\tДа\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "Поддерживает сохранение\tНет\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "Ориентация экрана\tВертикальная\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "Ориентация экрана\tГоризонтальная\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "Требует CHD\tДа\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "Требует CHD\tНет\n" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "Результат проверки ROM\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "Результат проверки ROM\tНЕУДАЧНО\n" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "Результат проверки сэмплов\tНе требуется\n" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "Результат проверки сэмплов\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "Результат проверки сэмплов\tНЕУДАЧНО\n" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d систем (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "ROM-набор: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "Система: %1$-.100s" @@ -2134,29 +2398,29 @@ msgstr "Список выбора - Поиск: " msgid "Double click or press %1$s to select" msgstr "Кликние два раза или нажмите %1$s для выбора" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "Проверить ROMы для %1$u систем, помеченных как недоступные?" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "Проверить ROMы для всех %1$u систем?" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(результаты будут сохранены в %1$s)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "Проверяем ROMы для системы %2$u из %3$u...%1$s" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "Начать проверку" @@ -2176,211 +2440,246 @@ msgstr "Скрыть информацию / изображение" msgid "Hide Both" msgstr "Скрыть оба" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Шрифты" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Цвета" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Язык" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Скрыть боковые панели" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Пользовательские настройки интерфейса" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "по-умолчанию" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Шрифт интерфейса" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Жирный" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Наклонный" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Линии" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Размер инфо-текста" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Настройки шрифта интерфейса" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "Пример текста - Съешь же ещё этих французских булок, да выпей чаю." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Обычный текст" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Выделенный цвет" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Обычный текст задника" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Выделенный цвет задника" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Цвет подпункта" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Бордюр" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Задний фон" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "DIP-переключатель" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Недоступный цвет" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Цвет слайдера" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Фон просмотрщика графики" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Цвет под мышью" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Цвет фона под мышью" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Цвет мышь нажата" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Цвет фона мышь нажата" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Восстановить изначальные цвета" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Настройка цветов интерфейса" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "Кликните два раза или нажмите %1$s для изменения цвета" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Предпросмотр меню" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Обычный" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Подпункт" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Выделенный" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Под мышью" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "Настройки ARGB" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Альфа" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Красный" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Зеленый" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Синий" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Выберите из палитры" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Предпросмотр цвета =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Белый" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Серебристый" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Серый" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Черный" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Красный" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Оранжевый" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Желтый" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Зеленый" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Синий" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Фиолетовый" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2411,7 +2710,7 @@ msgstr "Аналоговое управление" #: src/frontend/mame/ui/mainmenu.cpp:71 msgid "DIP Switches" -msgstr "" +msgstr "DIP-переключатели" #: src/frontend/mame/ui/mainmenu.cpp:73 msgid "Machine Configuration" @@ -2487,137 +2786,215 @@ msgid "Select New Machine" msgstr "Выбрать новую систему" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Панели управления" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Снимки экрана" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "Кабинет" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "Панель управления" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "Плата" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "Буклет" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Предпросмотр оформления" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Боссы" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "Логотип" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Против" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Игра Окончена" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Обучение" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Таблицы рекордов" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "Маркиза" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Обложки" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Добавить или удалить избранное" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Экспорт отображаемого списка в файл" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "Показать вид DAT" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Выбор части программы:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "Выбор BIOS:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "Программа - clone от: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "Программа - parent" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Поддерживается: Нет" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Поддерживается: Частично" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Поддерживается: Да" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "ROM-набор: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "Драйвер - clone от: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "ROM-набор: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "Драйвер - parent" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "Драйвер - clone от: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Изображения" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Информация" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "Нажмите любую клавишу для продолжения." -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Использование" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Общая информация" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Звук" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Частота звука" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Использовать внешние сэмплы" @@ -3208,7 +3585,7 @@ msgstr "" msgid "Gameinit" msgstr "Иниц. игры" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "История" @@ -3232,17 +3609,57 @@ msgstr "" msgid "MAMEinfo" msgstr "" -#~ msgid "Backdrops" -#~ msgstr "Задники" +#~ msgid "Custom UI Settings" +#~ msgstr "Пользовательские настройки интерфейса" + +#~ msgid "Software Usage" +#~ msgstr "Использование ПО" + +#~ msgid "Usage" +#~ msgstr "Использование" + +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "Интерфейс" + +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Язык" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Сэмплы" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Читы" + +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "Титулы" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "Концовки" -#~ msgid "Overlays" -#~ msgstr "Оверлеи" +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "КонецИгры" -#~ msgid "Bezels" -#~ msgstr "Обрамления" +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "Титулы" -#~ msgid "CPanels" -#~ msgstr "Панели" +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Концовки" + +#~ msgid "Select" +#~ msgstr "Выбор" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "ROM-набор: %1$-.100s" #~ msgid "View" #~ msgstr "Вид" @@ -3253,9 +3670,6 @@ msgstr "" #~ msgid "Full" #~ msgstr "Полный" -#~ msgid "Dip Switches" -#~ msgstr "DIP-переключатели" - #~ msgid "Select position to load from" #~ msgstr "Укажите слот загрузки" @@ -3334,21 +3748,6 @@ msgstr "" #~ msgid "Artwork Crop" #~ msgstr "Обрезка оформления" -#~ msgid "Use Backdrops" -#~ msgstr "Использовать задники" - -#~ msgid "Use Overlays" -#~ msgstr "Использовать оверлеи" - -#~ msgid "Use Bezels" -#~ msgstr "Использовать обрамление" - -#~ msgid "Use Control Panels" -#~ msgstr "Использовать панели" - -#~ msgid "Use Marquees" -#~ msgstr "Использовать маркизы" - #~ msgid "Bilinear snapshot" #~ msgstr "Билинейная фильтрация снимков экрана" diff --git a/language/Serbian/strings.po b/language/Serbian/strings.po index e74e8313704..9df1d8b3efd 100644 --- a/language/Serbian/strings.po +++ b/language/Serbian/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-03-02 21:46+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -19,7 +19,7 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Poedit 1.8.7\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -29,25 +29,25 @@ msgstr "" "\n" "Pritsnite bilo koji taster za nastavak" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "Za ovaj drajver je neophodno da slike budu učitane u sledeće uređaje:" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -60,185 +60,185 @@ msgstr "" "Pritisnite ''%s'' za napuštanje programa,\n" "Pritisnite ''%s'' za nastavak emulacije." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Glavna jačina zvuka" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s jačina zvuka" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "Ubrzanje osnovnog takta CPU %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s frekvencija osvežavanja" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s osvetljenost" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s kontrast" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s gama" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s rastezanje po horizontali" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s horizontalna pozicija" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s rastezanje po vertikali" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s vertikalna pozicija" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "Laserdisc '%1$s' rastezanje po horizontali" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "Laserdisc '%1$s' horizontalna pozicija" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "Laserdisc '%1$s' rastezanje po vertikali" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "Laserdisc '%1$s' vertikalna pozicija" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Treperenje vektora" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Minimalna širina snopa" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Maksimalna širinia snopa" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Intenzitet snopa" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Razmera nišana %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Pomeraj nišana %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Razmera nišana X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Razmera nišana Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Pomeraj nišana X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Pomeraj nišana Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**Greška prilikom snimanja ui.ini**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**Greška prlikom zapisivanja %s.ini**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -248,7 +248,7 @@ msgstr "" " Konfiguracija sačuvana \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -257,8 +257,8 @@ msgstr "" "%s\n" " dodato u listu omiljenih" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -267,33 +267,33 @@ msgstr "" "%s\n" " izbrisano iz liste omiljenih." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d programskih paketa )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Drajver: \"%1$s\" lista programa " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - Pretraga: %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "Pretraga: %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Opcije za zvuk" @@ -321,7 +321,7 @@ msgstr "Prilagodi korisnički interfejs" msgid "Configure Directories" msgstr "Konfiguracija direktorijuma" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[prazan slot]" @@ -330,7 +330,7 @@ msgstr "[prazan slot]" msgid "[create]" msgstr "[kreiraj]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[lista programa]" @@ -339,23 +339,23 @@ msgstr "[lista programa]" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Odaberi mod pristupa" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Samo čitanje" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Čitanje-pisanje" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Čitaj ovaj fajl, piši u drugi" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Čitaj ovaj fajl, piši razlike" @@ -375,7 +375,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Varanja" @@ -667,36 +667,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "Uključeno" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Isključeno" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Automatski" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Podešavanje kontrola (ova mašina)" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Izlaz" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Povratak u prethodni meni" @@ -734,86 +734,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "zaštita" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "grafika" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "zvuk" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "kamera" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "mikrofon" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "tastatura" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "miš" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" -msgstr "" +msgstr "disk" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" -msgstr "" +msgstr "štampač" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" -msgstr "" +msgstr "magnetna traka" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -1001,28 +1022,28 @@ msgstr "Delimično podržano" msgid "[empty]" msgstr "[prazno]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[upravljanje fajlovima]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Promeni sortiranje" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "Promenjen redosled: sada je sortirano po %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "skraćeno ime" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "opis" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[kompatibilne liste]" @@ -1030,11 +1051,11 @@ msgstr "[kompatibilne liste]" msgid "File Already Exists - Override?" msgstr "Fajl već postoji - prepiši?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "Ne" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Da" @@ -1075,7 +1096,7 @@ msgstr "Prirodni" msgid "Emulated" msgstr "Emulirani" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1092,189 +1113,358 @@ msgstr "Omogućeno" msgid "Disabled" msgstr "Onemogućeno" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "Radi" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "Ne radi" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" -msgstr "" +msgstr "Mehanički" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" -msgstr "" +msgstr "Ne mehanički" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "Kategorija" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "Lista omiljenih" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" -msgstr "BIOS" +msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" -msgstr "" +msgstr "Klonovi" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "Proizvođač" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "Godina" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "Vertikalni ekran" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "Horizontalni ekran" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "Lista omiljenih" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "Klonovi" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "Godina" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "Izdavač" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "Tip uredjaja" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "Lista programa" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Izbor proizvoljnih filtera" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Ukloni poslednji filter" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Dodaj filter" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "Fajl" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Upotreba softvera" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Revizija" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Resetuj" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1283,7 +1473,7 @@ msgstr "" "Vreme rada: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1292,7 +1482,7 @@ msgstr "" "Vreme rada: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1301,88 +1491,92 @@ msgstr "" "Izdate karte: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Žeton %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Žeton %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (zaključano)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Vidljivo kašnjenje" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml sačuvan u ui direktorijum." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Ime: Opis:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt sačuvan u ui direktorijum." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Eksportuj listu u XML formatu (kao -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "Eksportuj listu u XML formatu (kao -listxml, ali bez uredjaja)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Eksportuj listu u TXT formatu (kao -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Drajver" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Dodaj u listu omiljenih" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Izbriši iz liste omiljenih" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (uobičajeno)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Dodatci" @@ -1394,23 +1588,41 @@ msgstr "Pseudo terminali" msgid "[failed]" msgstr "[neuspešno]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1433,7 +1645,7 @@ msgid "Other Controls" msgstr "Ostale kontrole" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1445,27 +1657,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1543,7 +1755,7 @@ msgstr "" "fajl u docs direktorijumu za informacije o podešavanju %2$s." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Konfiguracija opcija" @@ -1557,7 +1769,7 @@ msgid "Type name or select: (random)" msgstr "Otkucajte ime ili izaberite: (nasumičan izbor)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1568,52 +1780,52 @@ msgid "Driver: %1$-.100s" msgstr "Drajver: %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "Uopšteno: NE RADI" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "Uopšteno: Zaštita nije emulirana" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "Uopšteno: radi" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "Grafika: nije implementirana, " #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Grafika: nesavršena, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Grafika: OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Zvuk: nije implementiran" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Zvuk: nesavršen" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Zvuk: OK" @@ -1639,482 +1851,534 @@ msgid "Reload All" msgstr "Ponovo učitaj sve" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROM-ovi" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "Korisnički interfejs" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Jezici" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "Ilustracije" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Semplovi" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Nišani" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DAT fajlovi" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INI fajlovi" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DAT fajlovi" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Snimci ekrana" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Ikone" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Snimci ekrana" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Upravljački paneli" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Kabineti" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Letci" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Naslovni ekrani" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Ekrani završetka igre" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "PCB (štampane pločice)" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "Posteri iznad kabineta" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Upravljački paneli" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Nišani" +msgctxt "path-option" +msgid "PCBs" +msgstr "PCB (štampane pločice)" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Ilustracije" +msgctxt "path-option" +msgid "Flyers" +msgstr "Letci" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "Naslovni ekrani" + +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "Ekrani završetka igre" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Finalni protivnici" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" msgstr "Umanjeni prikaz ilustracija" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" msgstr "Izborni ekrani" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "Neuspešan kraj igre" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "Uputstvo" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Logoi" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Najbolji rezultata" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Versus ekrani" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Maske" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Podešavanje direktorijuma" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Trenutni %1$s direktorijum" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Promeni direktorijum" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Dodaj direktorijum" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Ukloni direktorijum" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "Promeni %1$s direktorijum - Pretraga: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "Dodaj %1$s direktorijum - Pretraga: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Pritisnite TAB da podesite" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "Ukloni %1$s direktorijum" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " BOJE" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " OLOVKE" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Konfiguracija mašine" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "ROM skup\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "Godina\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "Proizvođač\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "Drajver je klon od\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "Drajver je predak\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "Uopšteno\tNE RADI\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "Uopšteno\tZaštita nije emulirana\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "Uopšteno\tradi\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "Grafika\tnije implementirana\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "Grafika\tnesavršene boje\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "Grafika\tnesavršena\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "Grafika\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "Zvuk\tnije implementiran\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "Zvuk\tnesavršen\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "Zvuk\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "Tastatura\tnije implementirana\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "Tastatura\tnesavršena\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "Miš\tnije implementiran\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "Miš\tnesavršen\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "Orijentacija ekrana\tVertikalno\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "Orijentacija ekrana\tHorizontalno\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d mašine (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "ROM skup: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "Sistem: %1$-.100s" @@ -2128,29 +2392,29 @@ msgstr "Izborna lista - pretraga:" msgid "Double click or press %1$s to select" msgstr "Dupli klik ili pritisnite %1$s za selektovanje" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2170,212 +2434,247 @@ msgstr "Sakrij Info/Sliku" msgid "Hide Both" msgstr "Sakrij oboje" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Fontovi" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Boje" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Jezici" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Prikaži bočne panele" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Podešavanja korisničkog interfejsa" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "uobičajeno" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Font korisničkog interfejsa" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Podebljano" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Iskošeno" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Linije" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Visina teksta za informacije" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Podešavanje fontova za korisnički interfejs" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "Primer teksta - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Normalni tekst" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Boja izabranog" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Pozadina normalnog teksta" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Boja pozadine za izabranu stavku" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Boja pod-stavke" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Kloniraj" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Granica" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Pozadina" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "DIP prekidač" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Boja za nedostupno" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Boja klizača" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Grafički prikaz pozadine" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Boja pri prelasku miša" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Boja pozadine pri prelasku miša" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Boja pri pritisku miša" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Boja pozadine miša" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Vrati originalne boje" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Podešavanje boja korisničkog interfejsa" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "Dupli klik ili pritisnite %1$s da promenite boju" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Probni prikaz menija" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Normalno" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Pod-stavka" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Izabrano" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Prelay mišem" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "ARGB podešavanja" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Alfa" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Crvenа" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Zelenа" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Plavа" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Izabrati iz palete" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Prikaz boja =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Bela" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Srebrna" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Siva" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Crna" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Crvenа" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Narandžasta" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Žuta" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Zelenа" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Plavа" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Ljubičasta" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2406,7 +2705,7 @@ msgstr "Analogne kontrole" #: src/frontend/mame/ui/mainmenu.cpp:71 msgid "DIP Switches" -msgstr "" +msgstr "DIP prekidači" #: src/frontend/mame/ui/mainmenu.cpp:73 msgid "Machine Configuration" @@ -2482,137 +2781,215 @@ msgid "Select New Machine" msgstr "Izaberi novu mašinu" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Kontrolni panel" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Snimci ekrana" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "Kabinet" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "PCB (štampana pločica)" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Pregled artwork-a" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Finalni protivnici" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "Logo" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Versus ekrani" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Završni ekran igre" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Uputstvo" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Najbolji rezultata" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "Izborni ekrani" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Maske" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Dodavanje ili uklanjanje omiljenih" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Eksportuj prikazanu listu u fajl" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "Prikaži DAT" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Izbor dela softvera:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "Izbor BIOS-a:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "Softver je klon od: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "Softver je predak" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Podržano: ne" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Podržano: delimično" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Podržano: da" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "ROM skup: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "Drajver je klon od: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "ROM skup: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "Drajver je osnovni" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "Drajver je klon od: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Programi" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Informacije" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "Pritisnite bilo koji taster za nastavak." -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Upotreba" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Opšte informacije" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Zvuk" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Učestalost uzorkovanja" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Koristi dodatne semplove" @@ -3200,7 +3577,7 @@ msgstr "" msgid "Gameinit" msgstr "Inicijalizacija" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Istorija" @@ -3220,17 +3597,58 @@ msgstr "МESS - informacije" msgid "MAMEinfo" msgstr "МАМЕ - informacije" -#~ msgid "Backdrops" -#~ msgstr "Kulise (pozadine)" +#~ msgid "Custom UI Settings" +#~ msgstr "Podešavanja korisničkog interfejsa" + +#~ msgid "Software Usage" +#~ msgstr "Upotreba softvera" + +#~ msgid "Usage" +#~ msgstr "Upotreba" + +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "Korisnički interfejs" -#~ msgid "Overlays" -#~ msgstr "Prekrivajuće ilustracije" +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Jezici" -#~ msgid "Bezels" -#~ msgstr "Ivice" +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Semplovi" -#~ msgid "CPanels" -#~ msgstr "Komandni paneli" +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Varanja" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "Neuspešan kraj igre" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Control Panels" +#~ msgstr "Kontrolni panel" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Flyers" +#~ msgstr "Letci" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "Naslovni ekrani" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Ekrani završetka igre" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Marquees" +#~ msgstr "Posteri iznad kabineta" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "ROM skup: %1$-.100s" #~ msgid "View" #~ msgstr "Prikaz" @@ -3241,9 +3659,6 @@ msgstr "МАМЕ - informacije" #~ msgid "Full" #~ msgstr "Potpuno" -#~ msgid "Dip Switches" -#~ msgstr "DIP prekidači" - #~ msgid "Select position to load from" #~ msgstr "Izaberite poziciju sa koje želite da učitate" diff --git a/language/Serbian_Cyrillic/strings.po b/language/Serbian_Cyrillic/strings.po index d013e8f93d2..d3e616bd0fe 100644 --- a/language/Serbian_Cyrillic/strings.po +++ b/language/Serbian_Cyrillic/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-23 12:43+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -19,7 +19,7 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Poedit 1.8.7\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -29,25 +29,25 @@ msgstr "" "\n" "Притисните било који тастер за наставак" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "За овај драјвер је неопходно да слике буду учитане у следеће уређаје:" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -60,185 +60,185 @@ msgstr "" "Притисните ''%s'' за напуштање програма,\n" "Притисните ''%s'' за наставак емулације." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Главна јачина звука" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s јачина звука" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "Убрзање основног такта CPU %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s фреквенција освежавања" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s осветљеност" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s контраст" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s гама" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s растезање по хоризонтали" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s хоризонтална позиција" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s растезање по вертикали" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s вертикална позиција" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "Laserdisc '%1$s' растезање по хоризонтали" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "Laserdisc '%1$s' хоризонтална позиција" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "Laserdisc '%1$s' растезање по вертикали" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "Laserdisc '%1$s' вертикална позиција" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Треперење вектора" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Минимална ширина снопа" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Максимална шириниа снопа" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Интензитет снопа" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Размера нишана %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Померај нишана %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Размера нишана X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Размера нишана Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Померај нишана X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Померај нишана Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**Грешка приликом снимања ui.ini**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**Грешка прликом записивања %s.ini**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -248,7 +248,7 @@ msgstr "" " Конфигурација сачувана \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -257,8 +257,8 @@ msgstr "" "%s\n" " додато у листу омиљених." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -267,33 +267,33 @@ msgstr "" "%s\n" " избрисано из листе омиљених." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d програмских пакета )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Драjвeр: \"%1$s\" листа програма " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - Претрага: %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "Претрага: %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Опције за звук" @@ -321,7 +321,7 @@ msgstr "Прилагоди кориснички интерфејс" msgid "Configure Directories" msgstr "Конфигурација директоријума" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[празан слот]" @@ -330,7 +330,7 @@ msgstr "[празан слот]" msgid "[create]" msgstr "[креирај]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[листа програма]" @@ -339,23 +339,23 @@ msgstr "[листа програма]" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Одабери мод приступа" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Само читање" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Читање-писање" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Читај овај фајл, пиши у други" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Читај овај фајл, пиши разлике" @@ -375,7 +375,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Варања" @@ -667,36 +667,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "Укључено" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Искључено" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Аутоматски" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Подешавање контрола (ова машина)" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Излаз" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Повратак у претходни мени" @@ -734,86 +734,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "заштита" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "графика" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "звук" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "камера" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "микрофон" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "тастатура" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "миш" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" -msgstr "" +msgstr "диск" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" -msgstr "" +msgstr "штампач" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" -msgstr "" +msgstr "магнетна трака" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -1001,28 +1022,28 @@ msgstr "Делимично подржано" msgid "[empty]" msgstr "[празно]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[управљање фајловима]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Промени сортирање" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "Промењен редослед: сада је сортирано по %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "скраћено име" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "опис" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[компатибилне листе]" @@ -1030,11 +1051,11 @@ msgstr "[компатибилне листе]" msgid "File Already Exists - Override?" msgstr "Фајл већ постоји - препиши?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "Не" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Да" @@ -1075,7 +1096,7 @@ msgstr "Природни" msgid "Emulated" msgstr "Емулирани" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1092,189 +1113,358 @@ msgstr "Омогућено" msgid "Disabled" msgstr "Онемогућено" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "Ради" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "Не ради" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" -msgstr "" +msgstr "Механички" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" -msgstr "" +msgstr "Не механички" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "Категорија" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "Листа омиљених" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" -msgstr "BIOS" +msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" -msgstr "" +msgstr "Клонови" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "Произвођач" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "Година" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "Вертикални екран" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "Хоризонтални екран" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "Листа омиљених" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "Клонови" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "Година" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "Издавач" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "Тип уређаја" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "Листа програма" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Избор произвољних филтера" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Уклони последњи филтер" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Додај филтер" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "Фајл" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Употреба софтвера" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Ревизија" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Ресетуј" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1283,7 +1473,7 @@ msgstr "" "Време рада: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1292,7 +1482,7 @@ msgstr "" "Време рада: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1301,88 +1491,92 @@ msgstr "" "Издате карте: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Жетон %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Жетон %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (закључано)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Видљиво кашњење" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml сачуван у ui директоријум." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Име: Опис:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt сачуван у ui директоријум." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Експортуј листу у XML формату (као -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "Експортуј листу у XML формату (као -listxml, али без уређаја)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Експортуј листу у TXT формату (као -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Драјвер" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Додај у листу омиљених" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Избриши из листе омиљених" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (уобичајено)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Додатци" @@ -1394,23 +1588,41 @@ msgstr "Псеудо терминали" msgid "[failed]" msgstr "[неуспечно]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1433,7 +1645,7 @@ msgid "Other Controls" msgstr "Остале контроле" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1445,27 +1657,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1543,7 +1755,7 @@ msgstr "" "фајл у docs директоријуму за информације о подешавању %2$s." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Конфигурација опција" @@ -1557,7 +1769,7 @@ msgid "Type name or select: (random)" msgstr "Откуцајте име или изаберите: (насумичан избор)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1568,52 +1780,52 @@ msgid "Driver: %1$-.100s" msgstr "Драјвер: %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "Уопштено: НЕ РАДИ" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "Уопштено: Заштита није емулирана" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "Уопштено: ради" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "Графика: није имплементирана, " #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Графика: несавршена, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Графика: ОК, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Звук: није имплементиран" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Звук: несавршен" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Звук: ОК" @@ -1639,482 +1851,534 @@ msgid "Reload All" msgstr "Поново учитај све" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "РОМ-ови" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "Кориснички интерфејс" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Језици" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "Илустрације" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Семплови" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Нишани" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DAT фајлови" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INI фајлови" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DAT фајлови" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Снимци екрана" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Иконе" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Снимци екрана" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Управљачки панели" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Кабинети" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Летци" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Насловни екрани" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Екрани завршетка игре" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "PCB (штампане плочице)" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "Постери изнад кабинета" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Управљачки панели" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Нишани" +msgctxt "path-option" +msgid "PCBs" +msgstr "PCB (штампане плочице)" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Илустрације" +msgctxt "path-option" +msgid "Flyers" +msgstr "Летци" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "Насловни екрани" + +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "Екрани завршетка игре" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Финални противници" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" msgstr "Умањени приказ илустрација" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" msgstr "Изборни екрани" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "Неуспешан крај игре" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "Упутство" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Логои" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Најбољи резултати" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Версус екрани" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Маске" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Подешавање директоријума" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Тренутни %1$s директоријум" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Промени директоријум" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Додај директоријум" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Уклони директоријум" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "Промени %1$s директоријум - Претрага: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "Додај %1$s директоријум - Претрага: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Притисните TAB да подесите" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "Уклони %1$s директоријум" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " БОЈЕ" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "ОЛОВКЕ" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Конфигурација машине" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "РОМ скуп\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "Година\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "Произвођач\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "Драјвер је клон од\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "Драјвер је предак\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "Уопштено\tНЕ РАДИ\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "Уопштено\tЗаштита није емулирана" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "Уопштено\tради\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "Графика\tније имплементирана\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "Графика\tнесавршене боје\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "Графика\tнесавршена\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "Графика\tОК\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "Звук\tније имплементиран\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "Звук\tнесавршен\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "Звук\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "Тастатура\tније имплементирана\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "Тастатура\tнесавршена\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "Миш\tније имплементиран\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "Миш\tнесавршен\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "Оријентација екрана\tВертикално\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "Оријентација екрана\tХоризонтално\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d машине (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "ROM скуп: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "Систем: %1$-.100s" @@ -2128,29 +2392,29 @@ msgstr "Изборна листа - претрага:" msgid "Double click or press %1$s to select" msgstr "Дупли клик или притисните %1$s за селектовање" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2170,212 +2434,247 @@ msgstr "Сакриј Инфо/Слику" msgid "Hide Both" msgstr "Сакриј обоје" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Фонтови" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Боје" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Језици" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Прикажи бочне панеле" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Подешавања корисничког интерфејса" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "уобичајено" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Фонт корисничког интерфејса" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Подебљано" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Искошено" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Линије" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Висина текста за информације" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Подешавање фонтова за кориснички интерфејс" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "Пример текста - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Нормални текст" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Боја изабраног" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Позадина нормалног текста" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Боја позадине за изабрану ставку" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Боја подставке" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Клонирај" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Граница" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Позадина" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "DIP прекидач" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Боја за недоступно" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Боја клизача" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Графички приказ позадине" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Боја при преласку миша" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Боја позадине при преласку миша" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Боја при притиску миша" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Боја позадине миша" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Врати оригиналне боје" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Подешавање боја корисничког интерфејса" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "Дупли клик или притисните %1$s да промените боју" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Пробни приказ менија" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Нормално" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Под-ставка" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Изабрано" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Прелаз мишем" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "ARGB подешавања" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Алфа" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Црвена" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Зелена" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Плава" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Изабрати из палете" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Пробни приказ боја =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Бела" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Сребрна" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Сива" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Црна" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Црвена" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Наранџаста" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Жута" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Зелена" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Плава" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Љубичаста" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2406,7 +2705,7 @@ msgstr "Аналогне контроле" #: src/frontend/mame/ui/mainmenu.cpp:71 msgid "DIP Switches" -msgstr "" +msgstr "DIP прекидачи" #: src/frontend/mame/ui/mainmenu.cpp:73 msgid "Machine Configuration" @@ -2482,137 +2781,215 @@ msgid "Select New Machine" msgstr "Изабери нову машину" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Контролни панел" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Снимци екрана" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "Кабинет" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "PCB (штампана плочица)" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Преглед artwork-а" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Финални противници" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "Лого" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Версус екрани" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Завршни екран игре" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Упутство" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Најбољи резултати" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "Изборни екрани" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Маске" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Додавање или уклањање омиљених" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Експортуј приказану листу у фајл" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "Прижи DAT" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Избор дела софтвера:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "Избор BIOS-а:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "Софтвер је клон од: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "Софтвер је предак" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Подржано: не" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Подржано: делимично" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Подржано: да" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "РОМ скуп: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "Драјвер је клон од: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "ROM скуп: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "Драјвер је основни" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "Драјвер је клон од: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Програми" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Информације" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "Притисните било који тастер за наставак." -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Употреба" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Опште информације" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Звук" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Учесталост узорковања" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Користи додатне семплове" @@ -3200,7 +3577,7 @@ msgstr "" msgid "Gameinit" msgstr "Иницијализација" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Историја" @@ -3220,17 +3597,58 @@ msgstr "MESS - информације" msgid "MAMEinfo" msgstr "MAME - информације" -#~ msgid "Backdrops" -#~ msgstr "Кулисе (позадине)" +#~ msgid "Custom UI Settings" +#~ msgstr "Подешавања корисничког интерфејса" + +#~ msgid "Software Usage" +#~ msgstr "Употреба софтвера" + +#~ msgid "Usage" +#~ msgstr "Употреба" + +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "Кориснички интерфејс" -#~ msgid "Overlays" -#~ msgstr "Прекривајуће илустрације" +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Језици" -#~ msgid "Bezels" -#~ msgstr "Ивице" +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Семплови" -#~ msgid "CPanels" -#~ msgstr "Командни панели" +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Варања" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "Неуспешан крај игре" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Control Panels" +#~ msgstr "Контролни панел" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Flyers" +#~ msgstr "Летци" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "Насловни екрани" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Екрани завршетка игре" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Marquees" +#~ msgstr "Постери изнад кабинета" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "РОМ скуп: %1$-.100s" #~ msgid "View" #~ msgstr "Приказ" @@ -3241,9 +3659,6 @@ msgstr "MAME - информације" #~ msgid "Full" #~ msgstr "Потпуно" -#~ msgid "Dip Switches" -#~ msgstr "DIP прекидачи" - #~ msgid "Select position to load from" #~ msgstr "Изаберите позицију са које желите да учитате" diff --git a/language/Slovak/strings.po b/language/Slovak/strings.po index ce527f822ea..6bf347d1282 100644 --- a/language/Slovak/strings.po +++ b/language/Slovak/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -18,32 +18,32 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -52,233 +52,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -306,7 +306,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -315,7 +315,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -324,23 +324,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -360,7 +360,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -652,36 +652,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -719,86 +719,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -962,28 +983,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -991,11 +1012,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1036,7 +1057,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1053,291 +1074,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1349,23 +1543,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1388,7 +1600,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1400,27 +1612,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1493,7 +1705,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1507,7 +1719,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1518,52 +1730,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1587,482 +1799,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2076,29 +2340,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2118,211 +2382,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2429,137 +2728,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3147,7 +3524,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Slovenian/strings.po b/language/Slovenian/strings.po index 76febab025a..c613928e0bb 100644 --- a/language/Slovenian/strings.po +++ b/language/Slovenian/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -19,32 +19,32 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -53,233 +53,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -307,7 +307,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -316,7 +316,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -325,23 +325,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -361,7 +361,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -653,36 +653,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -720,86 +720,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -963,28 +984,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -992,11 +1013,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1037,7 +1058,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1054,291 +1075,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1350,23 +1544,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1389,7 +1601,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1401,27 +1613,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1494,7 +1706,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1508,7 +1720,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1519,52 +1731,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1588,482 +1800,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2077,29 +2341,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2119,211 +2383,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2430,137 +2729,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3148,7 +3525,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Spanish/strings.po b/language/Spanish/strings.po index 458950c78a3..cc7196d21a3 100644 --- a/language/Spanish/strings.po +++ b/language/Spanish/strings.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-03-05 13:02+0100\n" "Last-Translator: aviloria\n" "Language-Team: Español; Castellano <>\n" @@ -21,7 +21,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Gtranslator 2.91.7\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -31,27 +31,27 @@ msgstr "" "\n" "Pulsa cualquier tecla para continuar." -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" "Este controlador necesita que se carguen imágenes en los siguientes " "dispositivos: " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -64,185 +64,185 @@ msgstr "" "Presiona «%1$s» para salir,\n" "Presiona «%2$s» para volver al emulador." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Volumen principal" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "Volumen %1$s" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "Acelerar CPU %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "Overclock de sonido %1$s" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "Tasa de refresco %1$s" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "Brillo %1$s" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "Contraste %1$s" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "Gamma %1$s" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "Estiramiento horizontal %1$s" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "Posición horizontal %1$s" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "Estiramiento vertical %1$s" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "Posición vertical %1$s" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "Estiramiento horizontal de Laserdisc «%1$s»" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "Posición horizontal de Laserdisc «%1$s»" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "Estiramiento vertical de Laserdisc «%1$s»" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "Posición vertical de Laserdisc «%1$s»" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Vector de parpadeo" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Anchura mín. del haz" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Anchura max. del haz" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Peso de intensidad del haz" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Escala de diana %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "Horizontal" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Vertical" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Posición de diana %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Escala horizontal de diana %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Escala vertical de diana %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Posición horizontal de diana %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Posición vertical de diana %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**Error al guardar «ui.ini»**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "Error al guardar «%s.ini»**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -252,7 +252,7 @@ msgstr "" " Se ha guardado la configuración \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -261,8 +261,8 @@ msgstr "" "%s\n" " añadido a la lista de favoritos." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -271,33 +271,33 @@ msgstr "" "%s\n" " eliminado de la lista de favoritos." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d paquetes de software )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Controlador: \"%1$s\" lista de software " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - Buscar: %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "Buscar: %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Opciones de sonido" @@ -325,7 +325,7 @@ msgstr "Personalizar interfaz" msgid "Configure Directories" msgstr "Configurar carpetas" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[ranura vacía]" @@ -334,7 +334,7 @@ msgstr "[ranura vacía]" msgid "[create]" msgstr "[crear]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[lista de software]" @@ -343,23 +343,23 @@ msgstr "[lista de software]" msgid "Error accessing %s" msgstr "Error al acceder a %s" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Elige el modo de acceso" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Solo lectura" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Lectura y escritura" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Leer esta imagen, escribir en otra imagen" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Leer esta imagen, escribir en diferencial" @@ -379,7 +379,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "Agrandar imágenes en el panel derecho" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Trucos" @@ -671,36 +671,36 @@ msgstr "Actualización síncrona" msgid "Wait Vertical Sync" msgstr "Esperar a la sincronización vertical" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "Sí" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "No" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Automát." -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Volver a la máquina" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Salir" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Volver al menú anterior" @@ -738,86 +738,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "protección" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "cronometraje" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "gráficos" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "paleta de color" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "sonido" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "cámara" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "micrófono" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "controles" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "teclado" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "ratón" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "disco" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "impresora" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "Red local" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "Red global" @@ -1005,28 +1026,28 @@ msgstr "Soportado parcialmente" msgid "[empty]" msgstr "[vacío]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[administrador de archivos]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Reordenar listado" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "Orden cambiado: las entradas ahora se ordenan por %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "nombre corto" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "descripción" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[listas compatibles]" @@ -1034,11 +1055,11 @@ msgstr "[listas compatibles]" msgid "File Already Exists - Override?" msgstr "El archivo ya existe ¿Quieres sobreescribirlo?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "No" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Sí" @@ -1079,7 +1100,7 @@ msgstr "Natural" msgid "Emulated" msgstr "Emulado" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1096,189 +1117,358 @@ msgstr "Activado" msgid "Disabled" msgstr "Desactivado" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "Sin filtrar" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "Disponible" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "No disponible" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "Funciona" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "No Funciona" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "Mecánica" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "No mecánica" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "Categoría" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "Favoritos" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "BIOS" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "No BIOS" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "Padres" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "Clones" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "Fabricante" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "Año" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "Soporta guardado" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "No soporta guardado" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "Requiere CHD" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "No requiere CHD" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "Pantalla vertical" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "Pantalla horizontal" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "Filtro personalizado" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "Sin filtrar" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "Disponible" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "No disponible" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "Favoritos" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "Padres" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "Clones" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "Año" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "Editor" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "Soportado" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "Parcialmente soportado" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "No soportado" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "Región de la versión" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "Tipo de dispositivo" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "Lista de software" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "Filtro personalizado" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "<configurar filtros>" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Seleccionar filtros personalizados:" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "Filtro %1$u" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Eliminar último filtro" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Añadir filtro" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "Selecciona categoria:" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "[Sin ficheros INI de categorías]" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "[No hay grupos en el fichero INI]" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "No se han encontrado ficheros INI de categorías" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "Fichero" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "No se han encontrado grupos en el fichero de categorías" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "Grupo" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "Incluir clones" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Forma de uso" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Revisión: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Restablecer" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1287,7 +1477,7 @@ msgstr "" "Tiempo encendido: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1296,7 +1486,7 @@ msgstr "" "Tiempo encendido: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1305,90 +1495,94 @@ msgstr "" "Boletos emitidos: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Moneda %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Moneda %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (bloqueado)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Retardo visible" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml guardado en la carpeta «ui»." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Nombre: Descripción:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt guardado en la carpeta «ui»." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Exportar lista en formato XML (igual que -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" "Exportar lista en formato XML (igual que -listxml, pero excluyendo los " "dispositivos)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Exportar lista en formato TXT (igual que -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Controlador" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "Esta máquina no tiene BIOS." -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Añadir a favoritos" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Borrar de favoritos" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (predeterminado)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Plugins" @@ -1400,23 +1594,41 @@ msgstr "Pseudo-terminales" msgid "[failed]" msgstr "[falló]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "Cargar estado de la máquina" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "Guardar estado de la máquina" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1439,7 +1651,7 @@ msgid "Other Controls" msgstr "Otros controles" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1451,27 +1663,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1553,7 +1765,7 @@ msgstr "" "configurar %2$s." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Configurar opciones" @@ -1567,7 +1779,7 @@ msgid "Type name or select: (random)" msgstr "Escribe un nombre o elige: (aleatorio)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1578,52 +1790,52 @@ msgid "Driver: %1$-.100s" msgstr "Controlador: %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "En general: NO FUNCIONA" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "En general: Protección sin emular" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "En general: Funcionando" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "Gráficos: No implementado, " #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Gráficos: Imperfectos," #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Gráficos: Aceptables, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "Sonido: No" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Sonido: No implementado" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Sonido: Imperfecto" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Sonido: Aceptable" @@ -1649,466 +1861,523 @@ msgid "Reload All" msgstr "Recargar todo" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROMs" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "Medios del Software" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "Interfaz" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Idioma" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "Arte" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Muestras" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Dianas" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DATs" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INIs" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DATs" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "INIs de categorías" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Capturas" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Iconos" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Capturas" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Paneles de control" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Cabinas arcade" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Folletos" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Títulos" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Finales" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "Circuitos impresos" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "Marquesinas" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Paneles de control" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Dianas" +msgctxt "path-option" +msgid "PCBs" +msgstr "Circuitos impresos" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Arte" +msgctxt "path-option" +msgid "Flyers" +msgstr "Folletos" + +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Jefes" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" msgstr "Vista previa del arte" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "Elegir" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "Fin de partida" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "Manual" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Logos" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Puntuaciones" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Versus" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Cubiertas" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Ajustes de carpeta" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Carpetas actuales %1$s" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Cambiar carpeta" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Añadir carpeta" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Borrar carpeta" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "Cambiar carpeta %1$s - Buscar: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "Añadir carpeta %1$s - Buscar: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Pulsa TAB para establecer" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "Borrar carpeta %1$s" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " COLORES" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " PLUMAS" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Configurar máquina" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "Conjunto de roms\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "Año\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "Fabricante\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "El controlador es un clon de\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "Es un controlador padre\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "Controles analógicos\tSi\n" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "Entradas de teclado\tSi\n" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "En General\tNO FUNCIONA\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "En General\tProtección no emulada\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "En General\tFunciona\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "Gráficos\tNo implementados\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "Gráficos\tColores erróneos\n" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "Gráficos\tColores imperfectos\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "Gráficos\tImperfectos\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "Gráficos\tAceptables" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "Sonido\tNo\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "Sonido\tNo implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "Sonido\tImperfecto\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "Sonido\tAceptable\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "Cámara\tNo implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "Cámara\tImperfecta\n" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "Micrófono\tNo implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "Micrófono\tImperfecto\n" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "Controles\tNo implementados\n" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "Controles\tImperfectos\n" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "Teclado\tNo implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "Teclado\tImperfecto\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "Ratón\tNo implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "Ratón\tImperfecto\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "Disco\tNo implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "Disco\tImperfecto\n" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "Impresora\tNo implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "Impresora\tImperfecta\n" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "Red local\tNo implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "Red local\tImperfecta" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "Red global\tNo implementada\n" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "Red global\tImperfecta\n" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "Cronometraje\tNo implementado\n" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "Cronometraje\tImperfecto\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "Máquina mecánica\tSi\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "Máquina mecánica\tNo\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "Requiere arte\tSi\n" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "Requiere arte\tNo\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "Requiere arte clicable\tSi\n" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "Requiere arte clicable\tNo\n" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "Soporta modo cocktail\tNo\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "El controlador es una BIOS\tSi\n" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "El controlador es una BIOS\tNo\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "Soporta guardado\tSi\n" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "Soporta guardado\tNo\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "Orientación de la pantalla\tVertical\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "Orientación de la pantalla\tHorizontal\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "Requiere CHD\tSi\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "Requiere CHD\tNo\n" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "Resultado de la auditoría de ROMs\tCORRECTA\n" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "Resultado de la auditoría de ROMs\tINCORRECTA\n" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "Resultado de la auditoría de muestras\tNo necesaria\n" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "Resultado de la auditoría de muestras\tCORRECTA\n" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "Resultado de la auditoría de muestras\tINCORRECTA\n" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" @@ -2116,17 +2385,12 @@ msgstr "" "Auditoría de ROMs \tDesactivada\n" "Auditoría de muestras \tDesactivada\n" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d máquinas (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "Conjunto de ROMs: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "Sistema: %1$-.100s" @@ -2140,22 +2404,22 @@ msgstr "Lista de selección - Buscar: " msgid "Double click or press %1$s to select" msgstr "Haz doble clic o pulsa %1$s para elegir" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "¿Auditar ROMs para las %1$u máquinas marcadas como no-disponibles?" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "¿Auditar ROMs para todas las %1$u máquinas?" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(los resultados serán guardados en %1$s)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" @@ -2164,7 +2428,7 @@ msgstr "" "Auditando ROMs para la máquina %2$u de %3$u...\n" "%1$s" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "Comenzar auditoría" @@ -2184,212 +2448,247 @@ msgstr "Ocultar detalles/imagen" msgid "Hide Both" msgstr "Ocultar ambos" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Tipografía" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Colores" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Idioma" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Mostrar paneles laterales" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Ajustes de interfaz" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "predeterminado" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Tipografía de interfaz" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Negrita" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Cursiva" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Líneas" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Tamaño del texto informativo" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Ajustes tipográficos de interfaz" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" "Texto de ejemplo - La cigüeña olía el paté de atún del camión más lejano." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Texto normal" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Texto seleccionado" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Fondo del texto normal" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Fondo del texto seleccionado" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Color elem. secundarios" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Copiar" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Borde" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Fondo" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "Interruptor DIP" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Color no disponible" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Color del control deslizante" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Fondo del visor de efectos" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Color al resaltar con ratón" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Fondo al resaltar con ratón" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Color al seleccionar con ratón" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Fondo al seleccionar con ratón" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Restaurar colores originales" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "Ajustes de color de interfaz" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "Haz doble clic o pulsa %1$s para cambiar el color" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Vista previa" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Normal" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Elem. secundario" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Seleccionado" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Resaltado" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "Ajustes ARGB" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Transparencia" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Rojo" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Verde" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Azul" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Elegir colores más básicos" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Vista previa =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Blanco" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Plateado" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Gris" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Negro" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Rojo" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Naranja" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Amarillo" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Verde" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Azul" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Violeta" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2420,7 +2719,7 @@ msgstr "Controles analógicos" #: src/frontend/mame/ui/mainmenu.cpp:71 msgid "DIP Switches" -msgstr "" +msgstr "Interruptores DIP" #: src/frontend/mame/ui/mainmenu.cpp:73 msgid "Machine Configuration" @@ -2496,137 +2795,215 @@ msgid "Select New Machine" msgstr "Elegir máquina nueva" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Paneles de control" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Capturas" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "Cabina arcade" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "Panel de control" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "Circuito impreso" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "Folleto" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Vista previa de arte" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Jefes" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "Logo" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Versus" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Fin del juego" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Manual" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Puntuaciones" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "Marquesina" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Cubiertas" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Añadir o borrar de favoritos" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Exportar esta lista a un archivo" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "Mostrar vista de DATs" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Selección de partes de software:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "Selección de BIOS:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "El software es un clon de: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "Es un software padre" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Soportado: No" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Soportado: Parcialmente" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Soportado: Sí" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "conjunto de ROMs: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "El controlador es un clon de: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "Conjunto de ROMs: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "Es un controlador padre" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "El controlador es un clon de: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Imágenes" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Informaciones" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "Pulsa cualquier tecla para continuar." -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Utilización" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Información general" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Sonido" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Tasa de muestreo" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Utilizar muestras externas" @@ -2680,12 +3057,12 @@ msgstr " Pantalla '%1$s': Vectorial\n" #: src/frontend/mame/ui/devopt.cpp:116 #, c-format msgid " Screen '%1$s': %2$d × %3$d (V) %4$s Hz\n" -msgstr "" +msgstr " Pantalla '%1$s': %2$d × %3$d (V) %4$s Hz\n" #: src/frontend/mame/ui/devopt.cpp:117 #, c-format msgid " Screen '%1$s': %2$d × %3$d (H) %4$s Hz\n" -msgstr "" +msgstr " Pantalla '%1$s': %2$d × %3$d (H) %4$s Hz\n" #: src/frontend/mame/ui/devopt.cpp:130 msgid "* Sound:\n" @@ -3232,7 +3609,7 @@ msgstr "Puntuación MARP" msgid "Gameinit" msgstr "Inicio de partida" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Historial" @@ -3256,17 +3633,54 @@ msgstr "Información de MESS" msgid "MAMEinfo" msgstr "Información de MAME" -#~ msgid "Backdrops" -#~ msgstr "Fondos" +#~ msgid "Custom UI Settings" +#~ msgstr "Ajustes de interfaz" -#~ msgid "Overlays" -#~ msgstr "Sobreimpresiones" +#~ msgid "Software Usage" +#~ msgstr "Forma de uso" -#~ msgid "Bezels" -#~ msgstr "Marcos" +#~ msgid "Usage" +#~ msgstr "Utilización" -#~ msgid "CPanels" -#~ msgstr "Paneles de control" +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "Interfaz" + +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Idioma" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Muestras" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Trucos" + +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "Títulos" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "Finales" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "Fin de partida" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "Títulos" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Finales" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "conjunto de ROMs: %1$-.100s" #~ msgid "View" #~ msgstr "Ver" @@ -3277,9 +3691,6 @@ msgstr "Información de MAME" #~ msgid "Full" #~ msgstr "Completo" -#~ msgid "Dip Switches" -#~ msgstr "Interruptores DIP" - #~ msgid "Select position to load from" #~ msgstr "Selecciona la posición desde la que cargar" @@ -3362,52 +3773,9 @@ msgstr "Información de MAME" #~ msgid "Artwork Crop" #~ msgstr "Recortes del arte" -#~ msgid "Use Backdrops" -#~ msgstr "Utilizar fondos" - -#~ msgid "Use Overlays" -#~ msgstr "Utilizar sobreimpresiones" - -#~ msgid "Use Bezels" -#~ msgstr "Utilizar marcos" - -#~ msgid "Use Control Panels" -#~ msgstr "Utilizar paneles de control" - -#~ msgid "Use Marquees" -#~ msgstr "Utilizar marquesinas" - #~ msgid "Bilinear snapshot" #~ msgstr "Captura bilineal" -#, c-format -#~ msgid " %1$d×%2$s %3$d.%4$06d MHz\n" -#~ msgstr " %1$d×%2$s %3$d.%4$06d MHz\n" - -#~ msgid " %1$d×%2$s %5$d.%6$03d kHz\n" -#~ msgstr " %1$d×%2$s %5$d.%6$03d kHz\n" - -#~ msgid " %2$s %3$d.%4$06d MHz\n" -#~ msgstr " %2$s %3$d.%4$06d MHz\n" - -#~ msgid " %2$s %5$d.%6$03d kHz\n" -#~ msgstr " %2$s %5$d.%6$03d kHz\n" - -#, c-format -#~ msgid " Screen '%1$s': %2$d × %3$d (V) %4$f Hz\n" -#~ msgstr " Pantalla '%1$s': %2$d × %3$d (V) %4$f Hz\n" - -#, c-format -#~ msgid " Screen '%1$s': %2$d × %3$d (H) %4$f Hz\n" -#~ msgstr " Pantalla '%1$s': %2$d × %3$d (H) %4$f Hz\n" - -#, c-format -#~ msgid " %1$d×%2$s\n" -#~ msgstr " %1$d×%2$s\n" - -#~ msgid " %2$s\n" -#~ msgstr " %2$s\n" - #~ msgid "" #~ "The software selected is missing one or more required ROM or CHD images. " #~ "Please select a different one." @@ -3493,6 +3861,3 @@ msgstr "Información de MAME" #~ msgstr "" #~ "Auditoría de ROMs\tDeshabilitada\n" #~ "Auditoría de las muestras\tDeshabilitada\n" - -#~ msgid "Gfx: %s, Sound: %s" -#~ msgstr "Gráficos: %s, Sonido: %s" diff --git a/language/Spanish_Mexico/strings.po b/language/Spanish_Mexico/strings.po index dc53475fd04..a501f40cb6c 100644 --- a/language/Spanish_Mexico/strings.po +++ b/language/Spanish_Mexico/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -18,32 +18,32 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -52,233 +52,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -306,7 +306,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -315,7 +315,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -324,23 +324,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -360,7 +360,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -652,36 +652,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -719,86 +719,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -962,28 +983,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -991,11 +1012,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1036,7 +1057,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1053,291 +1074,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1349,23 +1543,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1388,7 +1600,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1400,27 +1612,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1493,7 +1705,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1507,7 +1719,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1518,52 +1730,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1587,482 +1799,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2076,29 +2340,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2118,211 +2382,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2429,137 +2728,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3147,7 +3524,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Swedish/strings.po b/language/Swedish/strings.po index c2ebae0a9b6..2bc9a08aad3 100644 --- a/language/Swedish/strings.po +++ b/language/Swedish/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" @@ -27,26 +27,26 @@ msgstr "" "\n" "Tryck på valfri tangent för att fortsätta" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" "Den här emuleringen kräver att avbildningar laddas i följande apparat(er): " -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -59,185 +59,185 @@ msgstr "" "Tryck ''%1$s'' för att avsluta,\n" "Tryck ''%2$s'' för att återgå till emuleringen." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Huvud Volym" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s Volym" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "Överklocka CPU %1$s" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "Överklocka %1$s ljud" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s Uppdateringsfrekvens" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s Ljusstyrka" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s Kontrast" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s Gamma" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s Horisontell utsträckning" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s Horisontell Position" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s Vertikal utsträckning" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s Vertikal Position" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "Laserdisk '%1$s' Horisontell utsträckning" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "Laserdisk '%1$s' Horisontell Position" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "Laserdisk '%1$s' Vertikal utsträckning" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "Laserdisk '%1$s' Vertikal Position" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "Vektor Flimmer" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "Stråle Bredd Minimum" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "Elektronstråle Bredd Maximum" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "Elektronstråle Intensitet" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "Hårkors Skala %1$s" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "X" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "Y" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "Hårkors Offset %1$s" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "%1$3ddB" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "%1$d%%" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "%1$3.0f%%" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "%1$.3f" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "%1$1.2f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "Hårkors Skala X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "Hårkors Skala Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "Hårkors Offset X %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "Hårkors Offset Y %1$1.3f" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "**Fel uppstod när ui.ini sparades**" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "**Fel uppstod när %s.ini sparades**" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" @@ -247,7 +247,7 @@ msgstr "" " Konfiguration sparad \n" "\n" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" @@ -256,8 +256,8 @@ msgstr "" "%s\n" " tillagd i favoritlistan." -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" @@ -266,33 +266,33 @@ msgstr "" "%s\n" " borttagen från favoritlistan." -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "%1$s %2$s ( %3$d / %4$d mjukvarupaket )" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "Drivrutin: \"%1$s\" mjukvarulista " -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "%1$s: %2$s - Sök: %3$s_" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "Sök: %1$s_" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "%1$-.100s" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Ljudalternativ" @@ -320,7 +320,7 @@ msgstr "Skräddarsy UI" msgid "Configure Directories" msgstr "Konfigurera Kataloger" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[tom plats]" @@ -329,7 +329,7 @@ msgstr "[tom plats]" msgid "[create]" msgstr "[skapa]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[mjukvarulista]" @@ -338,23 +338,23 @@ msgstr "[mjukvarulista]" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Välj accesstyp" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Enbart läsa" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Läsa och skriva" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "Läs denna skivavbildning, skriv kopia till en annan" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "Läs denna skivavbildning, skriv skillnader till en annan" @@ -374,7 +374,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "Förstora bilderna i den högra panelen" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Fusk" @@ -666,36 +666,36 @@ msgstr "Synkroniserad Uppdatering" msgid "Wait Vertical Sync" msgstr "Vänta på Vertikal Synkronisering" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "På" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "Av" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Automatisk" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Tillbaka till Emuleringen" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Hoppa ur" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Tillbaka till Föregående Meny" @@ -733,86 +733,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "skyddsmekanism" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "timing" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "grafik" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "färgpalett" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "ljud" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "kamera" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "mikrofon" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "kontroller" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "tangentbord" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "mus" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "disk" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "skrivare" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "LAN" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "WAN" @@ -1003,28 +1024,28 @@ msgstr "Stöds Delvis" msgid "[empty]" msgstr "[tom]" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[filhanterare]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Byt Sortering" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "Bytt Sortering: poster sorteras på %s" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "kortnamn" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "beskrivning" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[kompatibla listor]" @@ -1032,11 +1053,11 @@ msgstr "[kompatibla listor]" msgid "File Already Exists - Override?" msgstr "Fil Finns Redan - Skriv Över?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "Nej" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Ja" @@ -1077,7 +1098,7 @@ msgstr "Naturligt" msgid "Emulated" msgstr "Emulerat" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1094,189 +1115,358 @@ msgstr "Aktiverad" msgid "Disabled" msgstr "Inaktiverad" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "Ofiltrerat" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "Tillgängliga" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "Ej tillgängliga" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "Fungerar" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "Fungerar ej" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "Mekaniska" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "Ej Mekaniska" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "Kategori" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "Favoriter" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "BIOS" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "Ej BIOS" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "Har Kloner" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "Är Kloner" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "Tillverkare" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "År" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "Spara Stödda" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "Spara Ej Stödda" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "CHD avbildning krävs" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "Ingen CHD avbildning krävs" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "Vertikal skärm" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "Horisontell skärm" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "Eget filter" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "Ofiltrerat" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "Tillgängliga" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "Ej tillgängliga" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "Favoriter" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "Har Kloner" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "Är Kloner" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "År" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "Utgivare" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "Stödd" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "Partiellt Stöd" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "Ej Stödda" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "Utgivningsområde" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "Typ av apparat" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "Mjukvarulista" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "Eget filter" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "<skapa filter>" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "Välj eget filter" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "Filter %1$u" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "Ta bort senaste filtret" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "Lägg till filter" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "Välj kategori:" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "[ingen kategori INI filer]" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "[inga grupper i INI fil]" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "Inga kategorier INI filer funna" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "Fil" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "Inga grupper funna i kategorifil" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "Grupp" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "Inkludera kloner" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Mjukvaruanvändning" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Revision: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "Återställ" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" @@ -1285,7 +1475,7 @@ msgstr "" "Drifttid: %1$d:%2$02d:%3$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" @@ -1294,7 +1484,7 @@ msgstr "" "Drifttid: %1$d:%2$02d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" @@ -1303,88 +1493,92 @@ msgstr "" "Biljetter fördelade: %1$d\n" "\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "Mynt %1$c: NA%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "Mynt %1$c: %2$d%3$s\n" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr " (låst)" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Synlig Fördröjning" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "%s.xml sparad i ui katalog." -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Namn: Beskrivning:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "%s.txt sparad i ui katalog." -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "Exportlista i XML format (som -listxml)" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "Exportlista i XML format (som -listxml, men utan enheter)" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "Exportera lista i TXT format (som -listfull)" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "BIOS" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Drivrutin" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "Den här maskinen saknar BIOS." -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Lägg Till Favoriter" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Tabort Från Favoriter" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (standard)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "Tillägg" @@ -1396,23 +1590,41 @@ msgstr "Låtsasterminaler" msgid "[failed]" msgstr "[misslyckad]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "Ladda läge" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "Spara läge" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1435,7 +1647,7 @@ msgid "Other Controls" msgstr "Andra kontroller" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1447,27 +1659,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1548,7 +1760,7 @@ msgstr "" "katalogen för information hur man konfigurerar %2$s." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Konfigurationsalternativ" @@ -1562,7 +1774,7 @@ msgid "Type name or select: (random)" msgstr "Knappa in namn eller välj: (slumpmässig)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "%1$s, %2$-.100s" @@ -1573,52 +1785,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "Status: FUNGERAR EJ" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "Status: Oemulerad skyddsmekanism" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "Status: Fungerar" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "Grafik: Ej implementerad, " #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "Grafik: Bristfällig, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "Grafik: OK, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "Ljud: Inget" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Ljud: Ej implementerat" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Ljud: Bristfälligt" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Ljud: OK" @@ -1644,482 +1856,534 @@ msgid "Reload All" msgstr "Ladda Om Alla" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROMs" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "Mjukvaru Media" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "UI" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Språk" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "Grafisk Layout" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Samples" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Hårkors" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DATs" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INIs" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DATs" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "Kategori INIs" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Skärmklipp" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Ikoner" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Skärmklipp" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Kontrollpaneler" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Kabinett" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Flygblad" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Titlar" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Slutar" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "PCBs" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "Draperier" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Kontrollpaneler" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Hårkors" +msgctxt "path-option" +msgid "PCBs" +msgstr "PCBs" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Grafisk Layout" +msgctxt "path-option" +msgid "Flyers" +msgstr "Flygblad" + +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Bossar" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" msgstr "Förhandsvisning Grafisk Layout" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "Välj" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "GameOver" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "HowTo" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Logotyper" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Poäng" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Mot" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Omslagsbilder" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Katalogkonfiguration" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Nuvarande %1$s Kataloger" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Ändra Katalog" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Lägg Till Katalog" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Tabort Katalog" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "Ändra %1$s Katalog - Sök: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "Lägg till %1$s Katalog - Sök: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Tryck TAB för att välja" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "Tabort %1$s Katalog" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr " FÄRGER" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr " PENNOR" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "Maskinkonfiguration" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "Romdistribution\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "År\t%1$s\n" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "Tillverkare\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "Drivrutinen är klon av\t%1$-.100s\n" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "Drivrutinen är oberoende\t\n" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "Analoga kontroller\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "Tangentbord\tJa\n" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "Status\tFUNGERAR EJ\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "Status\tOemulerad skyddsmekanism\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "Status\tFungerar\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "Grafik\tEj implementerad\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "Grafik\tFel Färger\n" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "Grafik\tBristfälliga färger\n" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "Grafik\tBristfällig\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "Grafik\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "Ljud\tInget\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "Ljud\tEj implementerat\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "Ljud\tBristfälligt\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "Ljud\tOK\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "Kamera\tEj implementerad\n" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "Kamera\tBristfällig\n" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "Mikrofon\tEj implememterad\n" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "Mikrofon\tBristfällig\n" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "Kontroller\tEj implementerad\n" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "Kontroller\tBristfällig\n" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "Tangentbord\tEj implementerat\n" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "Tangentbord\tBristfälligt\n" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "Mus\tEj implementerad\n" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "Mus\tBristfällig\n" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "Disk\tEj implementerad\n" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "Disk\tBristfällig\n" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "Printer\tEj implementerad\n" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "Printer\tBristfällig\n" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "LAN\tEj implementerad\n" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "LAN\tBristfällig\n" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "WAN\tEj implementerad\n" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "WAN\tBristfälligt\n" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "Timing\tEj implementerad\n" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "Timing\tBristfällig\n" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" -msgstr "" +msgstr "Skärm Orientering\tVertikal\n" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" -msgstr "" +msgstr "Skärm Orientering\tHorisontal\n" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "%1$s %2$s ( %3$d / %4$d maskiner (%5$d BIOS) )" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "Romdistribution: %1$-.100s" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "System: %1$-.100s" @@ -2133,22 +2397,22 @@ msgstr "Urvalslista - Sök: " msgid "Double click or press %1$s to select" msgstr "Dubbelklicka eller tryck %1$s för att välja" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "Granskning av ROMs för %1$u maskiner markerade som ej tillgängliga?" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "Granskning av ROMs för alla %1$u maskiner?" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(resultat kommer att sparas som %1$s)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" @@ -2157,7 +2421,7 @@ msgstr "" "Granskning av ROMs för maskin %2$u av %3$u...\n" "%1$s" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "Starta Granskning" @@ -2177,211 +2441,246 @@ msgstr "Göm Info/Bild" msgid "Hide Both" msgstr "Göm Båda" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Typsnitt" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Färger" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Språk" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "Visa sidopaneler" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" -msgstr "Egna UI Inställningar" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "standard" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "UI Typsnitt" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Fet" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Kursiv" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Linjer" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Info Textstorlek" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "UI Typsnitts Inställningar" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "Provtext - Lorem ipsum dolor sit amet, consectetur adipiscing elit." -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Normal text" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Vald färg" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Normal textbakgrund" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Vald backgrundsfärg" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "Delpost färg" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Klon" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Kant" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Bakgrund" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "DIP switch" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "Ej tillgänglig färg" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "Reglage färg" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "Gfx visare bakgrund" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "Mouse over färg" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "Mouse over bakgrunds färg" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "Mouse down färg" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "Mouse down bakgrundsfärg" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Återställ ursprungfärger" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "UI färginställningar" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "Dubbelklicka eller tryck %1$s för att ändra färgvärde" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Förhandsvisning Meny" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Normal" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "Delpost" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Vald" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "Mouse Over" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "ARGB inställningar" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Alfa" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Röd" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Grön" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Blå" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Välj från palette" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Förhandsvisning Färg =" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Vit" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Silver" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Grå" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Svart" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Röd" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Orange" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Gul" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Grön" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Blå" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Lila" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "%1$s %2$s" @@ -2412,7 +2711,7 @@ msgstr "Analog Kontroller" #: src/frontend/mame/ui/mainmenu.cpp:71 msgid "DIP Switches" -msgstr "" +msgstr "DIP Switchar" #: src/frontend/mame/ui/mainmenu.cpp:73 msgid "Machine Configuration" @@ -2488,137 +2787,215 @@ msgid "Select New Machine" msgstr "Välj Ny Maskin" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Kontrollpaneler" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Skärmklipp" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "Kabinett" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "Kontrollpanel" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "PCB" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "Flygblad" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Förhandsvisining Grafisk Layout" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Bossar" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "Logotyp" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Mot" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Spelet Slut" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "HowTo" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Poäng" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Omslagsbilder" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Redigera favoriter" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Exportera listan till fil" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "Visa DATs vy" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Val av mjukvarudel:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "BIOS val:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "Mjukvaran är klonad från: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "Mjukvaran har kloner" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Stöd: Nej" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Stöd: Delvis" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Stöd: Ja" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" -msgstr "romdistribution: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "Drivrutinen är klon av: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "Romdistribution: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "Drivrutinen har kloner" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "Drivrutinen är klon av: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Bilder" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Information" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "Tryck på valfri tangent för att fortsätta." -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Användning" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Generell Information" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Ljud" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "Samplingshastighet" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "Använd Externa Samplingar" @@ -3206,7 +3583,7 @@ msgstr "MARPScore" msgid "Gameinit" msgstr "Spelstart" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Historia" @@ -3226,17 +3603,61 @@ msgstr "MESSinfo" msgid "MAMEinfo" msgstr "MAMEinfo" -#~ msgid "Backdrops" -#~ msgstr "Bakgrunder" +#~ msgid "Custom UI Settings" +#~ msgstr "Egna UI Inställningar" + +#~ msgid "Software Usage" +#~ msgstr "Mjukvaruanvändning" + +#~ msgid "Usage" +#~ msgstr "Användning" + +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "UI" + +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Språk" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Samples" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Fusk" + +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "Titlar" + +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "Slutar" -#~ msgid "Overlays" -#~ msgstr "Överlägg" +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "GameOver" -#~ msgid "Bezels" -#~ msgstr "Infattningar" +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "Titlar" -#~ msgid "CPanels" -#~ msgstr "CPaneler" +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Slutar" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Marquees" +#~ msgstr "Draperier" + +#~ msgid "Select" +#~ msgstr "Välj" + +#, c-format +#~ msgid "romset: %1$-.100s" +#~ msgstr "romdistribution: %1$-.100s" #~ msgid "View" #~ msgstr "Vy" @@ -3247,9 +3668,6 @@ msgstr "MAMEinfo" #~ msgid "Full" #~ msgstr "Full" -#~ msgid "Dip Switches" -#~ msgstr "Dip Switchar" - #~ msgid "Select position to load from" #~ msgstr "Välj position att ladda från" @@ -3329,21 +3747,6 @@ msgstr "MAMEinfo" #~ msgid "Artwork Crop" #~ msgstr "Grafisk Layout Beskärning" -#~ msgid "Use Backdrops" -#~ msgstr "Använd Bakgrunder" - -#~ msgid "Use Overlays" -#~ msgstr "Använd Överlägg" - -#~ msgid "Use Bezels" -#~ msgstr "Använd Infattningar" - -#~ msgid "Use Control Panels" -#~ msgstr "Använd Kontrollpaneler" - -#~ msgid "Use Marquees" -#~ msgstr "Använd Draperier" - #~ msgid "Bilinear snapshot" #~ msgstr "Bilinjär skärmavbildning" @@ -3383,15 +3786,6 @@ msgstr "MAMEinfo" #~ msgid "Support Save\t%1$s\n" #~ msgstr "Stödjer Spara\t%1$s\n" -#~ msgid "Screen Orientation\t%1$s\n" -#~ msgstr "Skärm Orientering\t%1$s\n" - -#~ msgid "Vertical" -#~ msgstr "Vertikal" - -#~ msgid "Horizontal" -#~ msgstr "Horisontal" - #~ msgid "Requires CHD\t%1$s\n" #~ msgstr "Kräver CHD\t%1$s\n" @@ -3426,23 +3820,5 @@ msgstr "MAMEinfo" #~ msgid "OK" #~ msgstr "OK" -#~ msgid "Gfx: %s, Sound: %s" -#~ msgstr "Gfx: %s, Ljud: %s" - -#~ msgid "Main filter" -#~ msgstr "Huvudfilter" - -#~ msgid "Other filter" -#~ msgstr "Andra filter" - -#~ msgid "^!Region" -#~ msgstr "^!Område" - -#~ msgid "^!Setup custom filter" -#~ msgstr "^!Skapa eget filter" - -#~ msgid "Extra INIs" -#~ msgstr "Extra INIs" - #~ msgid "Audit in progress..." #~ msgstr "Granskning pågår..." diff --git a/language/Thai/strings.po b/language/Thai/strings.po index 936764474c4..97b17e67115 100644 --- a/language/Thai/strings.po +++ b/language/Thai/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -16,32 +16,32 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -50,233 +50,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -304,7 +304,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -313,7 +313,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -322,23 +322,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -358,7 +358,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -650,36 +650,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -717,86 +717,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -960,28 +981,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -989,11 +1010,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1034,7 +1055,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1051,291 +1072,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1347,23 +1541,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1386,7 +1598,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1398,27 +1610,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1491,7 +1703,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1505,7 +1717,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1516,52 +1728,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1585,482 +1797,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2074,29 +2338,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2116,211 +2380,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2427,137 +2726,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3145,7 +3522,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Turkish/strings.po b/language/Turkish/strings.po index 9fb2e022169..d8e5ce999c1 100644 --- a/language/Turkish/strings.po +++ b/language/Turkish/strings.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -18,32 +18,32 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -56,233 +56,233 @@ msgstr "" "Çıkmak için ''%1$s'' e basın,\n" "Dönmek için ''%2$s'' e basın." -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "Ana Ses" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "%1$s Ses" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "%1$s Yenileme Oranı" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "%1$s Parlaklık" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "%1$s Karşıtlık" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "%1$s Gama" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "%1$s Yatay Uzatma" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "%1$s Yatay Konum" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "%1$s Dikey Uzatma" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "%1$s Dikey Konum" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "Lazerdisk '%1$s' Yatay Uzatma" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "Lazerdisk '%1$s' Yatay Konum" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "Lazerdisk '%1$s' Dikey Uzatma" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "Lazerdisk '%1$s' Dikey Konum" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "Ses Seçenekleri" @@ -310,7 +310,7 @@ msgstr "Arayüzü Özelleştir" msgid "Configure Directories" msgstr "Dizinleri yapılandır" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "[boş yuva]" @@ -319,7 +319,7 @@ msgstr "[boş yuva]" msgid "[create]" msgstr "[oluştur]" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "[yazılım listesi]" @@ -328,23 +328,23 @@ msgstr "[yazılım listesi]" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "Erişim tipini seçin" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "Salt-okunur" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "Salt-yazılır" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -364,7 +364,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "Hileler" @@ -656,36 +656,36 @@ msgstr "Eşitlenmiş Yenileme" msgid "Wait Vertical Sync" msgstr "Dikey eşitlemeyi bekle" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "Oto" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "Makineye Dön" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "Çıkış" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "Önceki Menüye Dön" @@ -723,86 +723,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "koruma" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "zamanlama" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "grafikler" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "renk paleti" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "ses" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "kamera" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "mikrofon" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "kontroller" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "klavye" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "fare" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "disk" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "yazıcı" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "LAN" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "WAN" @@ -970,28 +991,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "[dosya yöneticisi]" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "Madde sıralamasını değiştir" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "Sıralama değiştirildi: girdiler %s'e göre sıralandı" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "kısa ad" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "açıklama" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "[uyumlu listeler]" @@ -999,11 +1020,11 @@ msgstr "[uyumlu listeler]" msgid "File Already Exists - Override?" msgstr "Dosya Zaten Var - Üzerine yazılsın mı?" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "Hayır" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "Evet" @@ -1044,7 +1065,7 @@ msgstr "Doğal" msgid "Emulated" msgstr "Emule edilmiş" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1061,291 +1082,464 @@ msgstr "Etkin" msgid "Disabled" msgstr "Etkin Değil" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" -msgstr "Yazılım Kullanımı" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" +msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "Gözden Geçirme: " -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "Görünür Gecikme" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "Ad: Açıklama:\n" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "Sürücü" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "Favorilere Ekle" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "Favorilerden kaldır" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr " (varsayılan)" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1357,23 +1551,41 @@ msgstr "" msgid "[failed]" msgstr "[başarısız]" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "Durumu yükle" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "Durumu kaydet" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1396,7 +1608,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1408,27 +1620,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1510,7 +1722,7 @@ msgstr "" "dizinindeki config.txt dosyasına bakın." #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "Seçenekleri Düzenle" @@ -1524,7 +1736,7 @@ msgid "Type name or select: (random)" msgstr "İsim girin veya seçin: (rastgele)" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1535,52 +1747,52 @@ msgid "Driver: %1$-.100s" msgstr "Sürücü: %1$-.100s" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "Genel olarak: ÇALIŞMIYOR" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "Genel olarak: Uygulanmamış Koruma" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "Genel olarak: Çalışıyor" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "Grafik: Uygulanmamış" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " -msgstr "Grafik: Kusurlu" +msgstr "Grafik: Kusurlu, " #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " -msgstr "Grafik: Tamam" +msgstr "Grafik: Tamam, " #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "Ses: Yok" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "Ses: Uygulanmamış" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "Ses: Kusurlu" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "Ses: Tamam" @@ -1604,482 +1816,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "ROMlar" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "Yazılım Ortamı" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" -msgstr "Arayüz" +msgctxt "path-option" +msgid "Sound Samples" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" -msgstr "Dil" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" +msgstr "Çizimler" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" -msgstr "Örneklemeler" +msgctxt "path-option" +msgid "Crosshairs" +msgstr "Nişan" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" -msgstr "DATlar" +msgctxt "path-option" +msgid "Cheat Files" +msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 +msgctxt "path-option" +msgid "Plugins" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:44 +msgctxt "path-option" +msgid "UI Translations" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:45 +msgctxt "path-option" msgid "INIs" msgstr "INIler" -#: src/frontend/mame/ui/dirmenu.cpp:44 +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "DATlar" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" msgid "Category INIs" msgstr "Kategori INIleri" -#: src/frontend/mame/ui/dirmenu.cpp:45 +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" +msgstr "Ekran Görüntüleri" + +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" msgid "Icons" msgstr "Simgeler" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" -msgstr "Ekran Görüntüleri" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" +msgstr "Kontrol Panelleri" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" msgid "Cabinets" msgstr "Kabinler" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" -msgstr "Posterler" - -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" -msgstr "Başlıklar" - -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" -msgstr "Sonlar" - -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" -msgstr "Anakartlar" - -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 +#: src/frontend/mame/ui/dirmenu.cpp:54 +msgctxt "path-option" msgid "Marquees" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" -msgstr "Kontrol Panelleri" - #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" -msgstr "Nişan" +msgctxt "path-option" +msgid "PCBs" +msgstr "Anakartlar" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" -msgstr "Çizimler" +msgctxt "path-option" +msgid "Flyers" +msgstr "Posterler" + +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 +#: src/frontend/mame/ui/dirmenu.cpp:58 +msgctxt "path-option" +msgid "Game Endings" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" msgid "Bosses" msgstr "Patronlar" -#: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" -msgstr "Çizim Önizleme" +#: src/frontend/mame/ui/dirmenu.cpp:60 +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" msgid "Select" -msgstr "Seç" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" -msgstr "OyunBitti" +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" +msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "Nasıl" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "Logolar" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "Puanlar" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "Karşılaşma" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "Kapaklar" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "Dizin Ayarı" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "Şimdiki %1$s Dizinler" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "Dizin Değiştir" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "Dizin Ekle" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "Dizin Kaldır" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "%1$s Dizin Değiştir - Ara: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "%1$s Dizin Ekle - Ara: %2$s_" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "Ayarlamak için TAB'a basın" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "%1$s dizinini kaldır" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "RENKLER" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" -msgstr "" +msgstr "Genel olarak\tÇALIŞMIYOR\n" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" -msgstr "" +msgstr "Genel olarak\tUygulanmamış Koruma\n" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" -msgstr "" +msgstr "Genel olarak\tÇalışıyor\n" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" -msgstr "" +msgstr "Grafik\tUygulanmamış\n" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" -msgstr "" +msgstr "Grafik\tKusurlu\n" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" -msgstr "" +msgstr "Grafik\tTamam\n" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" -msgstr "" +msgstr "Ses\tYok\n" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" -msgstr "" +msgstr "Ses\tUygulanmamış\n" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" -msgstr "" +msgstr "Ses\tKusurlu\n" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" -msgstr "" +msgstr "Ses\tTamam\n" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2093,29 +2357,29 @@ msgstr "Seçim Listesi - Ara: " msgid "Double click or press %1$s to select" msgstr "Seçmek için çift tıkla veya %1$s'e bas" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "(sonuçlar %1$s 'a kaydedilecek)" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "Denetlemeyi Başlat" @@ -2135,211 +2399,246 @@ msgstr "Bilgi/Görüntü Gizle" msgid "Hide Both" msgstr "Hepsini Gizle" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "Yazıtipleri" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "Renkler" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "Dil" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "varsayılan" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "Kullanıcı arayüzü yazıtipi" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "Kalın" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "Eğik" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "Çizgiler" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "Bilgiler yazı boyutu" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "Kullanıcı arayüzü Yazıtipi Seçenekleri" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "Normal yazı" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "Seçilen renk" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "Normal yazı arkaplanı" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "Seçilen arkaplan rengi" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "Klon" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "Çerçeve" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "Arkaplan" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "Orijinal renkleri geri yükle" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "Menü önizleme" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "Normal" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "Seçili" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "ARGB Ayarları" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "Alfa" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "Kırmızı" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "Yeşil" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "Mavi" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "Paletten seç" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "Renk önizleme=" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "Beyaz" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "Gümüş" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "Gri" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "Siyah" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "Kırmızı" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "Turuncu" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "Sarı" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "Yeşil" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "Mavi" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "Mor" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2370,7 +2669,7 @@ msgstr "Analog Kontroller" #: src/frontend/mame/ui/mainmenu.cpp:71 msgid "DIP Switches" -msgstr "" +msgstr "DIP Anahtarlar" #: src/frontend/mame/ui/mainmenu.cpp:73 msgid "Machine Configuration" @@ -2446,137 +2745,215 @@ msgid "Select New Machine" msgstr "Yeni Makine Seçin" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" -msgstr "Kontrol Panelleri" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "Ekran Görüntüleri" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "Kontrol Paneli" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "Anakart" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" +msgstr "Poster" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "Sanat Eseri Önizleme" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "Patronlar" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "Logo" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "Karşılaşma" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "Oyun Bitti" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "Nasıl" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "Puanlar" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "Kapaklar" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "Beğenilenlere ekle veya kaldır" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "Gösterilen dosya listesini dışa aktar" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "DAT görünümünü göster" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "Yazılım parça seçimi:" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "BIOS seçimi:" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "Yazılım şunun kopyasıdır: %1$-.100s" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "Yazılım esastır" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "Destekleniyor: Hayır" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "Destekleniyor: Kısmen" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "Destekleniyor: Evet" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" -msgstr "Sürücü şunun kopyasıdır: %1$-.100s" +msgid "Romset: %1$-.100s" +msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "Sürücü esastır" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "Sürücü şunun kopyasıdır: %1$-.100s" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "Görüntüler" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "Bilgiler" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "Kullanım" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "Genel Bilgi" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "Ses" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3164,7 +3541,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "Tarihçe" @@ -3184,17 +3561,58 @@ msgstr "" msgid "MAMEinfo" msgstr "" -#~ msgid "Backdrops" -#~ msgstr "Zeminler" +#~ msgid "Software Usage" +#~ msgstr "Yazılım Kullanımı" + +#~ msgid "Usage" +#~ msgstr "Kullanım" + +#~ msgctxt "path-option" +#~ msgid "UI" +#~ msgstr "Arayüz" + +#~ msgctxt "path-option" +#~ msgid "Language" +#~ msgstr "Dil" + +#~ msgctxt "path-option" +#~ msgid "Samples" +#~ msgstr "Örneklemeler" + +#~ msgctxt "path-option" +#~ msgid "Cheats" +#~ msgstr "Hileler" -#~ msgid "Overlays" -#~ msgstr "Kaplamalar" +#~ msgctxt "path-option" +#~ msgid "Titles" +#~ msgstr "Başlıklar" -#~ msgid "Bezels" -#~ msgstr "Çerçeveler" +#~ msgctxt "path-option" +#~ msgid "Ends" +#~ msgstr "Sonlar" -#~ msgid "CPanels" -#~ msgstr "Kontrol Panelleri" +#~ msgctxt "path-option" +#~ msgid "Artworks Preview" +#~ msgstr "Çizim Önizleme" + +#~ msgctxt "path-option" +#~ msgid "GameOver" +#~ msgstr "OyunBitti" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Cabinets" +#~ msgstr "Kabinler" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Titles" +#~ msgstr "Başlıklar" + +#~ msgctxt "selmenu-artwork" +#~ msgid "Ends" +#~ msgstr "Sonlar" + +#~ msgid "Select" +#~ msgstr "Seç" #~ msgid "View" #~ msgstr "Görünüm" @@ -3205,9 +3623,6 @@ msgstr "" #~ msgid "Full" #~ msgstr "Tam" -#~ msgid "Dip Switches" -#~ msgstr "Dip Anahtarlar" - #~ msgid "Select position to load from" #~ msgstr "Yüklenecek konumu seçin" @@ -3219,12 +3634,3 @@ msgstr "" #~ msgid "Refresh speed" #~ msgstr "Yenileme Hızı" - -#~ msgid "Unimplemented" -#~ msgstr "Uygulanmamış" - -#~ msgid "Imperfect" -#~ msgstr "Kusurlu" - -#~ msgid "OK" -#~ msgstr "Tamam" diff --git a/language/Ukrainian/strings.po b/language/Ukrainian/strings.po index 605dd7fa347..6593fc7c9c1 100644 --- a/language/Ukrainian/strings.po +++ b/language/Ukrainian/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -18,32 +18,32 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -52,233 +52,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -306,7 +306,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -315,7 +315,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -324,23 +324,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -360,7 +360,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -652,36 +652,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -719,86 +719,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -962,28 +983,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -991,11 +1012,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1036,7 +1057,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1053,291 +1074,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1349,23 +1543,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1388,7 +1600,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1400,27 +1612,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1493,7 +1705,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1507,7 +1719,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1518,52 +1730,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1587,482 +1799,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2076,29 +2340,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2118,211 +2382,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2429,137 +2728,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3147,7 +3524,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" diff --git a/language/Vietnamese/strings.po b/language/Vietnamese/strings.po index d80e4bfa7c2..7469665ab89 100644 --- a/language/Vietnamese/strings.po +++ b/language/Vietnamese/strings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: MAME\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-29 22:30+1000\n" +"POT-Creation-Date: 2021-10-09 10:52+1100\n" "PO-Revision-Date: 2016-02-20 18:03+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: MAME Language Team\n" @@ -17,32 +17,32 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/frontend/mame/ui/ui.cpp:470 src/frontend/mame/ui/ui.cpp:543 +#: src/frontend/mame/ui/ui.cpp:473 src/frontend/mame/ui/ui.cpp:546 msgid "" "\n" "\n" "Press any key to continue" msgstr "" -#: src/frontend/mame/ui/ui.cpp:555 +#: src/frontend/mame/ui/ui.cpp:558 msgid "This driver requires images to be loaded in the following device(s): " msgstr "" -#: src/frontend/mame/ui/ui.cpp:1247 +#: src/frontend/mame/ui/ui.cpp:1264 #, c-format msgid "" "UI controls enabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1249 +#: src/frontend/mame/ui/ui.cpp:1266 #, c-format msgid "" "UI controls disabled\n" "Use %1$s to toggle" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1442 +#: src/frontend/mame/ui/ui.cpp:1459 #, c-format msgid "" "Are you sure you want to quit?\n" @@ -51,233 +51,233 @@ msgid "" "Press ''%2$s'' to return to emulation." msgstr "" -#: src/frontend/mame/ui/ui.cpp:1492 +#: src/frontend/mame/ui/ui.cpp:1509 msgid "Master Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1501 +#: src/frontend/mame/ui/ui.cpp:1518 #, c-format msgid "%1$s Volume" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1523 +#: src/frontend/mame/ui/ui.cpp:1540 #, c-format msgid "Overclock CPU %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1531 +#: src/frontend/mame/ui/ui.cpp:1548 #, c-format msgid "Overclock %1$s sound" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1550 +#: src/frontend/mame/ui/ui.cpp:1567 #, c-format msgid "%1$s Refresh Rate" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1555 +#: src/frontend/mame/ui/ui.cpp:1572 #, c-format msgid "%1$s Brightness" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1557 +#: src/frontend/mame/ui/ui.cpp:1574 #, c-format msgid "%1$s Contrast" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1559 +#: src/frontend/mame/ui/ui.cpp:1576 #, c-format msgid "%1$s Gamma" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1563 +#: src/frontend/mame/ui/ui.cpp:1580 #, c-format msgid "%1$s Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1565 +#: src/frontend/mame/ui/ui.cpp:1582 #, c-format msgid "%1$s Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1567 +#: src/frontend/mame/ui/ui.cpp:1584 #, c-format msgid "%1$s Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1569 +#: src/frontend/mame/ui/ui.cpp:1586 #, c-format msgid "%1$s Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1585 +#: src/frontend/mame/ui/ui.cpp:1602 #, c-format msgid "Laserdisc '%1$s' Horiz Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1588 +#: src/frontend/mame/ui/ui.cpp:1605 #, c-format msgid "Laserdisc '%1$s' Horiz Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1590 +#: src/frontend/mame/ui/ui.cpp:1607 #, c-format msgid "Laserdisc '%1$s' Vert Stretch" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1593 +#: src/frontend/mame/ui/ui.cpp:1610 #, c-format msgid "Laserdisc '%1$s' Vert Position" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1603 +#: src/frontend/mame/ui/ui.cpp:1620 msgid "Vector Flicker" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1604 +#: src/frontend/mame/ui/ui.cpp:1621 msgid "Beam Width Minimum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1605 +#: src/frontend/mame/ui/ui.cpp:1622 msgid "Beam Width Maximum" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1606 +#: src/frontend/mame/ui/ui.cpp:1623 msgid "Beam Dot Size" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1607 +#: src/frontend/mame/ui/ui.cpp:1624 msgid "Beam Intensity Weight" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 +#: src/frontend/mame/ui/ui.cpp:1637 #, c-format msgid "Crosshair Scale %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "X" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1620 src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1637 src/frontend/mame/ui/ui.cpp:1639 msgid "Y" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1622 +#: src/frontend/mame/ui/ui.cpp:1639 #, c-format msgid "Crosshair Offset %1$s" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1654 +#: src/frontend/mame/ui/ui.cpp:1671 #, c-format msgid "%1$3ddB" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1697 +#: src/frontend/mame/ui/ui.cpp:1714 #, c-format msgid "%1$d%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1712 +#: src/frontend/mame/ui/ui.cpp:1729 #, c-format msgid "%1$3.0f%%" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1735 src/frontend/mame/ui/ui.cpp:1755 -#: src/frontend/mame/ui/ui.cpp:1774 src/frontend/mame/ui/ui.cpp:1792 -#: src/frontend/mame/ui/ui.cpp:1811 src/frontend/mame/ui/ui.cpp:1830 -#: src/frontend/mame/ui/ui.cpp:1849 src/frontend/mame/ui/ui.cpp:1868 -#: src/frontend/mame/ui/ui.cpp:1889 src/frontend/mame/ui/ui.cpp:1910 -#: src/frontend/mame/ui/ui.cpp:1931 src/frontend/mame/ui/ui.cpp:1952 +#: src/frontend/mame/ui/ui.cpp:1752 src/frontend/mame/ui/ui.cpp:1772 +#: src/frontend/mame/ui/ui.cpp:1791 src/frontend/mame/ui/ui.cpp:1809 +#: src/frontend/mame/ui/ui.cpp:1828 src/frontend/mame/ui/ui.cpp:1847 +#: src/frontend/mame/ui/ui.cpp:1866 src/frontend/mame/ui/ui.cpp:1885 +#: src/frontend/mame/ui/ui.cpp:1906 src/frontend/mame/ui/ui.cpp:1927 +#: src/frontend/mame/ui/ui.cpp:1948 src/frontend/mame/ui/ui.cpp:1969 #, c-format msgid "%1$.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:1967 src/frontend/mame/ui/ui.cpp:1982 -#: src/frontend/mame/ui/ui.cpp:1997 src/frontend/mame/ui/ui.cpp:2012 -#: src/frontend/mame/ui/ui.cpp:2027 +#: src/frontend/mame/ui/ui.cpp:1984 src/frontend/mame/ui/ui.cpp:1999 +#: src/frontend/mame/ui/ui.cpp:2014 src/frontend/mame/ui/ui.cpp:2029 +#: src/frontend/mame/ui/ui.cpp:2044 #, c-format msgid "%1$1.2f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2043 +#: src/frontend/mame/ui/ui.cpp:2060 #, c-format msgid "Crosshair Scale Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset X %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2060 +#: src/frontend/mame/ui/ui.cpp:2077 #, c-format msgid "Crosshair Offset Y %1$1.3f" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2167 +#: src/frontend/mame/ui/ui.cpp:2184 msgid "**Error saving ui.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2225 +#: src/frontend/mame/ui/ui.cpp:2243 #, c-format msgid "**Error saving %s.ini**" msgstr "" -#: src/frontend/mame/ui/ui.cpp:2229 src/frontend/mame/ui/miscmenu.cpp:762 +#: src/frontend/mame/ui/ui.cpp:2247 src/frontend/mame/ui/miscmenu.cpp:785 msgid "" "\n" " Configuration saved \n" "\n" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:225 src/frontend/mame/ui/selgame.cpp:461 +#: src/frontend/mame/ui/selsoft.cpp:498 src/frontend/mame/ui/selgame.cpp:665 #, c-format msgid "" "%s\n" " added to favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:230 src/frontend/mame/ui/selgame.cpp:466 -#: src/frontend/mame/ui/selgame.cpp:472 +#: src/frontend/mame/ui/selsoft.cpp:503 src/frontend/mame/ui/selgame.cpp:670 +#: src/frontend/mame/ui/selgame.cpp:676 #, c-format msgid "" "%s\n" " removed from favorites list." msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:630 +#: src/frontend/mame/ui/selsoft.cpp:719 #, c-format msgid "%1$s %2$s ( %3$d / %4$d software packages )" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:631 +#: src/frontend/mame/ui/selsoft.cpp:720 #, c-format msgid "Driver: \"%1$s\" software list " msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:636 src/frontend/mame/ui/selgame.cpp:1422 +#: src/frontend/mame/ui/selsoft.cpp:725 src/frontend/mame/ui/selgame.cpp:1655 #, c-format msgid "%1$s: %2$s - Search: %3$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:638 src/frontend/mame/ui/selgame.cpp:1424 +#: src/frontend/mame/ui/selsoft.cpp:727 src/frontend/mame/ui/selgame.cpp:1657 #, c-format msgid "Search: %1$s_" msgstr "" -#: src/frontend/mame/ui/selsoft.cpp:645 src/frontend/mame/ui/selsoft.cpp:652 +#: src/frontend/mame/ui/selsoft.cpp:734 #: src/frontend/mame/ui/simpleselgame.cpp:315 #, c-format msgid "%1$-.100s" msgstr "" -#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:149 +#: src/frontend/mame/ui/optsmenu.cpp:72 src/frontend/mame/ui/sndmenu.cpp:163 msgid "Sound Options" msgstr "" @@ -305,7 +305,7 @@ msgstr "" msgid "Configure Directories" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:87 +#: src/frontend/mame/ui/filesel.cpp:259 src/frontend/mame/ui/swlist.cpp:89 #: src/frontend/mame/ui/slotopt.cpp:220 msgid "[empty slot]" msgstr "" @@ -314,7 +314,7 @@ msgstr "" msgid "[create]" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:98 +#: src/frontend/mame/ui/filesel.cpp:267 src/frontend/mame/ui/swlist.cpp:100 msgid "[software list]" msgstr "" @@ -323,23 +323,23 @@ msgstr "" msgid "Error accessing %s" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:538 +#: src/frontend/mame/ui/filesel.cpp:542 msgid "Select access mode" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:539 +#: src/frontend/mame/ui/filesel.cpp:543 msgid "Read-only" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:541 +#: src/frontend/mame/ui/filesel.cpp:545 msgid "Read-write" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:542 +#: src/frontend/mame/ui/filesel.cpp:546 msgid "Read this image, write to another image" msgstr "" -#: src/frontend/mame/ui/filesel.cpp:543 +#: src/frontend/mame/ui/filesel.cpp:547 msgid "Read this image, write to diff" msgstr "" @@ -359,7 +359,7 @@ msgstr "" msgid "Enlarge images in the right panel" msgstr "" -#: src/frontend/mame/ui/submenu.cpp:35 src/frontend/mame/ui/dirmenu.cpp:46 +#: src/frontend/mame/ui/submenu.cpp:35 msgid "Cheats" msgstr "" @@ -651,36 +651,36 @@ msgstr "" msgid "Wait Vertical Sync" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:672 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:662 #: src/frontend/mame/ui/videoopt.cpp:192 plugins/cheatfind/init.lua:763 #: plugins/cheatfind/init.lua:774 plugins/cheat/init.lua:668 msgid "On" msgstr "" -#: src/frontend/mame/ui/menu.cpp:380 src/frontend/mame/ui/menu.cpp:675 +#: src/frontend/mame/ui/menu.cpp:370 src/frontend/mame/ui/menu.cpp:665 #: src/frontend/mame/ui/videoopt.cpp:208 plugins/cheatfind/init.lua:760 #: plugins/cheatfind/init.lua:771 plugins/cheat/init.lua:671 #: plugins/cheat/init.lua:680 msgid "Off" msgstr "" -#: src/frontend/mame/ui/menu.cpp:678 +#: src/frontend/mame/ui/menu.cpp:668 msgid "Auto" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1178 +#: src/frontend/mame/ui/menu.cpp:1168 msgid "Start Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1180 +#: src/frontend/mame/ui/menu.cpp:1170 msgid "Return to Machine" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1185 src/frontend/mame/ui/menu.cpp:1187 +#: src/frontend/mame/ui/menu.cpp:1175 src/frontend/mame/ui/menu.cpp:1177 msgid "Exit" msgstr "" -#: src/frontend/mame/ui/menu.cpp:1192 src/frontend/mame/ui/menu.cpp:1194 +#: src/frontend/mame/ui/menu.cpp:1182 src/frontend/mame/ui/menu.cpp:1184 msgid "Return to Previous Menu" msgstr "" @@ -718,86 +718,107 @@ msgid "Cannot change options while recording!" msgstr "" #: src/frontend/mame/ui/info.cpp:31 +msgctxt "emulation-feature" msgid "protection" msgstr "" #: src/frontend/mame/ui/info.cpp:32 +msgctxt "emulation-feature" msgid "timing" msgstr "" #: src/frontend/mame/ui/info.cpp:33 +msgctxt "emulation-feature" msgid "graphics" msgstr "" #: src/frontend/mame/ui/info.cpp:34 +msgctxt "emulation-feature" msgid "color palette" msgstr "" #: src/frontend/mame/ui/info.cpp:35 +msgctxt "emulation-feature" msgid "sound" msgstr "" #: src/frontend/mame/ui/info.cpp:36 +msgctxt "emulation-feature" msgid "capture hardware" msgstr "" #: src/frontend/mame/ui/info.cpp:37 +msgctxt "emulation-feature" msgid "camera" msgstr "" #: src/frontend/mame/ui/info.cpp:38 +msgctxt "emulation-feature" msgid "microphone" msgstr "" #: src/frontend/mame/ui/info.cpp:39 +msgctxt "emulation-feature" msgid "controls" msgstr "" #: src/frontend/mame/ui/info.cpp:40 +msgctxt "emulation-feature" msgid "keyboard" msgstr "" #: src/frontend/mame/ui/info.cpp:41 +msgctxt "emulation-feature" msgid "mouse" msgstr "" #: src/frontend/mame/ui/info.cpp:42 +msgctxt "emulation-feature" msgid "media" msgstr "" #: src/frontend/mame/ui/info.cpp:43 +msgctxt "emulation-feature" msgid "disk" msgstr "" #: src/frontend/mame/ui/info.cpp:44 +msgctxt "emulation-feature" msgid "printer" msgstr "" #: src/frontend/mame/ui/info.cpp:45 +msgctxt "emulation-feature" msgid "magnetic tape" msgstr "" #: src/frontend/mame/ui/info.cpp:46 +msgctxt "emulation-feature" msgid "punch tape" msgstr "" #: src/frontend/mame/ui/info.cpp:47 +msgctxt "emulation-feature" msgid "magnetic drum" msgstr "" #: src/frontend/mame/ui/info.cpp:48 +msgctxt "emulation-feature" msgid "solid state storage" msgstr "" #: src/frontend/mame/ui/info.cpp:49 +msgctxt "emulation-feature" msgid "communications" msgstr "" #: src/frontend/mame/ui/info.cpp:50 +msgctxt "emulation-feature" msgid "LAN" msgstr "" #: src/frontend/mame/ui/info.cpp:51 +msgctxt "emulation-feature" msgid "WAN" msgstr "" @@ -961,28 +982,28 @@ msgstr "" msgid "[empty]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:92 +#: src/frontend/mame/ui/swlist.cpp:94 msgid "[file manager]" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:234 +#: src/frontend/mame/ui/swlist.cpp:228 msgid "Switch Item Ordering" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 #, c-format msgid "Switched Order: entries now ordered by %s" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "shortname" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:267 +#: src/frontend/mame/ui/swlist.cpp:258 msgid "description" msgstr "" -#: src/frontend/mame/ui/swlist.cpp:397 +#: src/frontend/mame/ui/swlist.cpp:391 msgid "[compatible lists]" msgstr "" @@ -990,11 +1011,11 @@ msgstr "" msgid "File Already Exists - Override?" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:81 src/frontend/mame/ui/utils.cpp:1089 msgid "No" msgstr "" -#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/filecreate.cpp:82 src/frontend/mame/ui/utils.cpp:1089 msgid "Yes" msgstr "" @@ -1035,7 +1056,7 @@ msgstr "" msgid "Emulated" msgstr "" -#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:478 +#: src/frontend/mame/ui/keyboard.cpp:53 src/frontend/mame/ui/inputmap.cpp:484 #, c-format msgid "%1$s [root%2$s]" msgstr "" @@ -1052,291 +1073,464 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/frontend/mame/ui/utils.cpp:62 src/frontend/mame/ui/utils.cpp:86 +#: src/frontend/mame/ui/utils.cpp:63 +msgctxt "swlist-info" +msgid "Alternate Title" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:64 +msgctxt "swlist-info" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:65 +msgctxt "swlist-info" +msgid "Barcode Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:66 +msgctxt "swlist-info" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:67 +msgctxt "swlist-info" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:68 +msgctxt "swlist-info" +msgid "Installation Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:69 +msgctxt "swlist-info" +msgid "ISBN" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:70 +msgctxt "swlist-info" +msgid "OEM" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:71 +msgctxt "swlist-info" +msgid "Original Publisher" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:72 +msgctxt "swlist-info" +msgid "Part Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:73 +msgctxt "swlist-info" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:74 +msgctxt "swlist-info" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:75 +msgctxt "swlist-info" +msgid "Release Date" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:76 +msgctxt "swlist-info" +msgid "Serial Number" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:77 +msgctxt "swlist-info" +msgid "Usage Instructions" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:78 +msgctxt "swlist-info" +msgid "Version" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:84 +msgctxt "machine-filter" msgid "Unfiltered" msgstr "" -#: src/frontend/mame/ui/utils.cpp:63 src/frontend/mame/ui/utils.cpp:87 +#: src/frontend/mame/ui/utils.cpp:85 +msgctxt "machine-filter" msgid "Available" msgstr "" -#: src/frontend/mame/ui/utils.cpp:64 src/frontend/mame/ui/utils.cpp:88 +#: src/frontend/mame/ui/utils.cpp:86 +msgctxt "machine-filter" msgid "Unavailable" msgstr "" -#: src/frontend/mame/ui/utils.cpp:65 +#: src/frontend/mame/ui/utils.cpp:87 +msgctxt "machine-filter" msgid "Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:66 +#: src/frontend/mame/ui/utils.cpp:88 +msgctxt "machine-filter" msgid "Not Working" msgstr "" -#: src/frontend/mame/ui/utils.cpp:67 +#: src/frontend/mame/ui/utils.cpp:89 +msgctxt "machine-filter" msgid "Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:68 +#: src/frontend/mame/ui/utils.cpp:90 +msgctxt "machine-filter" msgid "Not Mechanical" msgstr "" -#: src/frontend/mame/ui/utils.cpp:69 +#: src/frontend/mame/ui/utils.cpp:91 +msgctxt "machine-filter" msgid "Category" msgstr "" -#: src/frontend/mame/ui/utils.cpp:70 src/frontend/mame/ui/utils.cpp:89 +#: src/frontend/mame/ui/utils.cpp:92 +msgctxt "machine-filter" msgid "Favorites" msgstr "" -#: src/frontend/mame/ui/utils.cpp:71 src/frontend/mame/ui/miscmenu.cpp:806 +#: src/frontend/mame/ui/utils.cpp:93 +msgctxt "machine-filter" msgid "BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:72 +#: src/frontend/mame/ui/utils.cpp:94 +msgctxt "machine-filter" msgid "Not BIOS" msgstr "" -#: src/frontend/mame/ui/utils.cpp:73 src/frontend/mame/ui/utils.cpp:90 +#: src/frontend/mame/ui/utils.cpp:95 +msgctxt "machine-filter" msgid "Parents" msgstr "" -#: src/frontend/mame/ui/utils.cpp:74 src/frontend/mame/ui/utils.cpp:91 +#: src/frontend/mame/ui/utils.cpp:96 +msgctxt "machine-filter" msgid "Clones" msgstr "" -#: src/frontend/mame/ui/utils.cpp:75 +#: src/frontend/mame/ui/utils.cpp:97 +msgctxt "machine-filter" msgid "Manufacturer" msgstr "" -#: src/frontend/mame/ui/utils.cpp:76 src/frontend/mame/ui/utils.cpp:92 +#: src/frontend/mame/ui/utils.cpp:98 +msgctxt "machine-filter" msgid "Year" msgstr "" -#: src/frontend/mame/ui/utils.cpp:77 +#: src/frontend/mame/ui/utils.cpp:99 +msgctxt "machine-filter" msgid "Save Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:78 +#: src/frontend/mame/ui/utils.cpp:100 +msgctxt "machine-filter" msgid "Save Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:79 +#: src/frontend/mame/ui/utils.cpp:101 +msgctxt "machine-filter" msgid "CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:80 +#: src/frontend/mame/ui/utils.cpp:102 +msgctxt "machine-filter" msgid "No CHD Required" msgstr "" -#: src/frontend/mame/ui/utils.cpp:81 +#: src/frontend/mame/ui/utils.cpp:103 +msgctxt "machine-filter" msgid "Vertical Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:82 +#: src/frontend/mame/ui/utils.cpp:104 +msgctxt "machine-filter" msgid "Horizontal Screen" msgstr "" -#: src/frontend/mame/ui/utils.cpp:83 src/frontend/mame/ui/utils.cpp:100 +#: src/frontend/mame/ui/utils.cpp:105 +msgctxt "machine-filter" msgid "Custom Filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:93 +#: src/frontend/mame/ui/utils.cpp:109 +msgctxt "software-filter" +msgid "Unfiltered" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:110 +msgctxt "software-filter" +msgid "Available" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:111 +msgctxt "software-filter" +msgid "Unavailable" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:112 +msgctxt "software-filter" +msgid "Favorites" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:113 +msgctxt "software-filter" +msgid "Parents" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:114 +msgctxt "software-filter" +msgid "Clones" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:115 +msgctxt "software-filter" +msgid "Year" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:116 +msgctxt "software-filter" msgid "Publisher" msgstr "" -#: src/frontend/mame/ui/utils.cpp:94 +#: src/frontend/mame/ui/utils.cpp:117 +msgctxt "software-filter" +msgid "Developer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:118 +msgctxt "software-filter" +msgid "Distributor" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:119 +msgctxt "software-filter" +msgid "Author" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:120 +msgctxt "software-filter" +msgid "Programmer" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:121 +msgctxt "software-filter" msgid "Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:95 +#: src/frontend/mame/ui/utils.cpp:122 +msgctxt "software-filter" msgid "Partially Supported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:96 +#: src/frontend/mame/ui/utils.cpp:123 +msgctxt "software-filter" msgid "Unsupported" msgstr "" -#: src/frontend/mame/ui/utils.cpp:97 +#: src/frontend/mame/ui/utils.cpp:124 +msgctxt "software-filter" msgid "Release Region" msgstr "" -#: src/frontend/mame/ui/utils.cpp:98 +#: src/frontend/mame/ui/utils.cpp:125 +msgctxt "software-filter" msgid "Device Type" msgstr "" -#: src/frontend/mame/ui/utils.cpp:99 +#: src/frontend/mame/ui/utils.cpp:126 +msgctxt "software-filter" msgid "Software List" msgstr "" -#: src/frontend/mame/ui/utils.cpp:247 +#: src/frontend/mame/ui/utils.cpp:127 +msgctxt "software-filter" +msgid "Custom Filter" +msgstr "" + +#: src/frontend/mame/ui/utils.cpp:291 msgid "<set up filters>" msgstr "" -#: src/frontend/mame/ui/utils.cpp:351 +#: src/frontend/mame/ui/utils.cpp:395 msgid "Select custom filters:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:502 +#: src/frontend/mame/ui/utils.cpp:546 #, c-format msgid "Filter %1$u" msgstr "" -#: src/frontend/mame/ui/utils.cpp:516 +#: src/frontend/mame/ui/utils.cpp:560 msgid "Remove last filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:518 +#: src/frontend/mame/ui/utils.cpp:562 msgid "Add filter" msgstr "" -#: src/frontend/mame/ui/utils.cpp:957 +#: src/frontend/mame/ui/utils.cpp:1001 msgid "Select category:" msgstr "" -#: src/frontend/mame/ui/utils.cpp:988 +#: src/frontend/mame/ui/utils.cpp:1032 msgid "[no category INI files]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:996 +#: src/frontend/mame/ui/utils.cpp:1040 msgid "[no groups in INI file]" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1030 +#: src/frontend/mame/ui/utils.cpp:1074 msgid "No category INI files found" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1035 +#: src/frontend/mame/ui/utils.cpp:1079 msgid "File" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1039 +#: src/frontend/mame/ui/utils.cpp:1083 msgid "No groups found in category file" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1044 +#: src/frontend/mame/ui/utils.cpp:1088 msgid "Group" msgstr "" -#: src/frontend/mame/ui/utils.cpp:1045 +#: src/frontend/mame/ui/utils.cpp:1089 msgid "Include clones" msgstr "" -#: src/frontend/mame/ui/datmenu.cpp:81 -msgid "Software Usage" +#: src/frontend/mame/ui/datmenu.cpp:81 src/frontend/mame/ui/selmenu.cpp:2635 +msgid "Software List Info" msgstr "" #: src/frontend/mame/ui/datmenu.cpp:365 msgid "Revision: " msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:77 src/frontend/mame/ui/confswitch.cpp:162 +#: src/frontend/mame/ui/miscmenu.cpp:78 src/frontend/mame/ui/confswitch.cpp:162 #: src/frontend/mame/ui/slotopt.cpp:203 msgid "Reset" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:235 +#: src/frontend/mame/ui/miscmenu.cpp:236 #, c-format msgid "" "Uptime: %1$d:%2$02d:%3$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:237 +#: src/frontend/mame/ui/miscmenu.cpp:238 #, c-format msgid "" "Uptime: %1$d:%2$02d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:241 +#: src/frontend/mame/ui/miscmenu.cpp:242 #, c-format msgid "" "Tickets dispensed: %1$d\n" "\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 msgid "Coin %1$c: NA%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:252 +#: src/frontend/mame/ui/miscmenu.cpp:253 #, c-format msgid "Coin %1$c: %2$d%3$s\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:255 +#: src/frontend/mame/ui/miscmenu.cpp:256 msgid " (locked)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:455 +#: src/frontend/mame/ui/miscmenu.cpp:456 #, c-format msgid "P%d Visibility" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:509 +#: src/frontend/mame/ui/miscmenu.cpp:510 #, c-format msgid "P%d Crosshair" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:526 +#: src/frontend/mame/ui/miscmenu.cpp:527 msgid "Visible Delay" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:638 +#: src/frontend/mame/ui/miscmenu.cpp:639 #, c-format msgid "%s.xml saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:664 +#: src/frontend/mame/ui/miscmenu.cpp:665 msgid "Name: Description:\n" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:675 +#: src/frontend/mame/ui/miscmenu.cpp:676 #, c-format msgid "%s.txt saved under ui folder." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:692 +#: src/frontend/mame/ui/miscmenu.cpp:693 msgid "Export list in XML format (like -listxml)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:693 +#: src/frontend/mame/ui/miscmenu.cpp:694 msgid "Export list in XML format (like -listxml, but exclude devices)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:694 +#: src/frontend/mame/ui/miscmenu.cpp:695 msgid "Export list in TXT format (like -listfull)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:810 +#: src/frontend/mame/ui/miscmenu.cpp:829 +msgid "BIOS" +msgstr "" + +#: src/frontend/mame/ui/miscmenu.cpp:833 msgid "Driver" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:813 +#: src/frontend/mame/ui/miscmenu.cpp:836 msgid "This machine has no BIOS." msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:822 src/frontend/mame/ui/mainmenu.cpp:134 +#: src/frontend/mame/ui/miscmenu.cpp:845 src/frontend/mame/ui/mainmenu.cpp:134 msgid "Add To Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:824 src/frontend/mame/ui/mainmenu.cpp:136 +#: src/frontend/mame/ui/miscmenu.cpp:847 src/frontend/mame/ui/mainmenu.cpp:136 msgid "Remove From Favorites" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:827 +#: src/frontend/mame/ui/miscmenu.cpp:850 msgid "Save Machine Configuration" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:838 +#: src/frontend/mame/ui/miscmenu.cpp:861 msgid "Configure Machine:" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:872 src/frontend/mame/ui/selmenu.cpp:2595 +#: src/frontend/mame/ui/miscmenu.cpp:895 src/frontend/mame/ui/selmenu.cpp:2573 msgid " (default)" msgstr "" -#: src/frontend/mame/ui/miscmenu.cpp:954 src/frontend/mame/ui/selgame.cpp:608 +#: src/frontend/mame/ui/miscmenu.cpp:977 src/frontend/mame/ui/selgame.cpp:812 msgid "Plugins" msgstr "" @@ -1348,23 +1542,41 @@ msgstr "" msgid "[failed]" msgstr "" -#: src/frontend/mame/ui/state.cpp:213 +#: src/frontend/mame/ui/state.cpp:215 msgid "No save states found" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:265 +#, c-format +msgid "" +"Delete saved state %1$s?\n" +"Press %2$s to delete\n" +"Press %3$s to cancel" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:378 +#, c-format +msgid "Error removing saved state file %1$s" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:424 +#, c-format +msgid "Press %1$s to delete" +msgstr "" + +#: src/frontend/mame/ui/state.cpp:497 msgid "Load State" msgstr "" -#: src/frontend/mame/ui/state.cpp:404 +#: src/frontend/mame/ui/state.cpp:497 msgid "Select state to load" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Save State" msgstr "" -#: src/frontend/mame/ui/state.cpp:428 +#: src/frontend/mame/ui/state.cpp:521 msgid "Press a key or joystick button, or select state to overwrite" msgstr "" @@ -1387,7 +1599,7 @@ msgid "Other Controls" msgstr "" #: src/frontend/mame/ui/inputmap.cpp:227 -msgid "This machine has no input map." +msgid "This machine has no configurable inputs." msgstr "" #: src/frontend/mame/ui/inputmap.cpp:310 @@ -1399,27 +1611,27 @@ msgstr "" msgid "Invalid sequence entered" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:480 +#: src/frontend/mame/ui/inputmap.cpp:486 #, c-format msgid "[root%1$s]" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:507 +#: src/frontend/mame/ui/inputmap.cpp:513 #, c-format msgid "Press %1$s to set\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:508 +#: src/frontend/mame/ui/inputmap.cpp:514 #, c-format msgid "Press %1$s to append\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:509 +#: src/frontend/mame/ui/inputmap.cpp:515 #, c-format msgid "Press %1$s to clear\n" msgstr "" -#: src/frontend/mame/ui/inputmap.cpp:510 +#: src/frontend/mame/ui/inputmap.cpp:516 #, c-format msgid "Press %1$s to restore default\n" msgstr "" @@ -1492,7 +1704,7 @@ msgid "" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:278 -#: src/frontend/mame/ui/selgame.cpp:603 +#: src/frontend/mame/ui/selgame.cpp:807 msgid "Configure Options" msgstr "" @@ -1506,7 +1718,7 @@ msgid "Type name or select: (random)" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:318 -#: src/frontend/mame/ui/selmenu.cpp:677 src/frontend/mame/ui/selmenu.cpp:713 +#: src/frontend/mame/ui/selmenu.cpp:660 src/frontend/mame/ui/selmenu.cpp:697 #, c-format msgid "%1$s, %2$-.100s" msgstr "" @@ -1517,52 +1729,52 @@ msgid "Driver: %1$-.100s" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:337 -#: src/frontend/mame/ui/selmenu.cpp:726 +#: src/frontend/mame/ui/selmenu.cpp:712 msgid "Overall: NOT WORKING" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:339 -#: src/frontend/mame/ui/selmenu.cpp:728 +#: src/frontend/mame/ui/selmenu.cpp:714 msgid "Overall: Unemulated Protection" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:341 -#: src/frontend/mame/ui/selmenu.cpp:730 +#: src/frontend/mame/ui/selmenu.cpp:716 msgid "Overall: Working" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:345 -#: src/frontend/mame/ui/selmenu.cpp:734 +#: src/frontend/mame/ui/selmenu.cpp:720 msgid "Graphics: Unimplemented, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:347 -#: src/frontend/mame/ui/selmenu.cpp:736 +#: src/frontend/mame/ui/selmenu.cpp:722 msgid "Graphics: Imperfect, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:349 -#: src/frontend/mame/ui/selmenu.cpp:738 +#: src/frontend/mame/ui/selmenu.cpp:724 msgid "Graphics: OK, " msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:352 -#: src/frontend/mame/ui/selmenu.cpp:741 +#: src/frontend/mame/ui/selmenu.cpp:727 msgid "Sound: None" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:354 -#: src/frontend/mame/ui/selmenu.cpp:743 +#: src/frontend/mame/ui/selmenu.cpp:729 msgid "Sound: Unimplemented" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:356 -#: src/frontend/mame/ui/selmenu.cpp:745 +#: src/frontend/mame/ui/selmenu.cpp:731 msgid "Sound: Imperfect" msgstr "" #: src/frontend/mame/ui/simpleselgame.cpp:358 -#: src/frontend/mame/ui/selmenu.cpp:747 +#: src/frontend/mame/ui/selmenu.cpp:733 msgid "Sound: OK" msgstr "" @@ -1586,482 +1798,534 @@ msgid "Reload All" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:37 +msgctxt "path-option" msgid "ROMs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:38 +msgctxt "path-option" msgid "Software Media" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:39 -msgid "UI" +msgctxt "path-option" +msgid "Sound Samples" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:40 src/frontend/mame/ui/custui.cpp:177 -msgid "Language" +#: src/frontend/mame/ui/dirmenu.cpp:40 +msgctxt "path-option" +msgid "Artwork" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:41 -msgid "Samples" +msgctxt "path-option" +msgid "Crosshairs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:42 -msgid "DATs" +msgctxt "path-option" +msgid "Cheat Files" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:43 -msgid "INIs" +msgctxt "path-option" +msgid "Plugins" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:44 -msgid "Category INIs" +msgctxt "path-option" +msgid "UI Translations" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:45 -msgid "Icons" +msgctxt "path-option" +msgid "INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:47 src/frontend/mame/ui/selmenu.cpp:74 -msgid "Snapshots" +#: src/frontend/mame/ui/dirmenu.cpp:46 +msgctxt "path-option" +msgid "UI Settings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:48 src/frontend/mame/ui/selmenu.cpp:75 -msgid "Cabinets" +#: src/frontend/mame/ui/dirmenu.cpp:47 +msgctxt "path-option" +msgid "Plugin Data" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:49 src/frontend/mame/ui/selmenu.cpp:78 -msgid "Flyers" +#: src/frontend/mame/ui/dirmenu.cpp:48 +msgctxt "path-option" +msgid "DATs" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:49 +msgctxt "path-option" +msgid "Category INIs" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:50 src/frontend/mame/ui/selmenu.cpp:79 -msgid "Titles" +#: src/frontend/mame/ui/dirmenu.cpp:50 +msgctxt "path-option" +msgid "Snapshots" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:51 src/frontend/mame/ui/selmenu.cpp:80 -msgid "Ends" +#: src/frontend/mame/ui/dirmenu.cpp:51 +msgctxt "path-option" +msgid "Icons" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:52 src/frontend/mame/ui/selmenu.cpp:77 -msgid "PCBs" +#: src/frontend/mame/ui/dirmenu.cpp:52 +msgctxt "path-option" +msgid "Control Panels" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:53 src/frontend/mame/ui/selmenu.cpp:89 -msgid "Marquees" +#: src/frontend/mame/ui/dirmenu.cpp:53 +msgctxt "path-option" +msgid "Cabinets" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:54 -msgid "Controls Panels" +msgctxt "path-option" +msgid "Marquees" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:55 -msgid "Crosshairs" +msgctxt "path-option" +msgid "PCBs" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:56 -msgid "Artworks" +msgctxt "path-option" +msgid "Flyers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:57 src/frontend/mame/ui/selmenu.cpp:82 -msgid "Bosses" +#: src/frontend/mame/ui/dirmenu.cpp:57 +msgctxt "path-option" +msgid "Title Screens" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:58 -msgid "Artworks Preview" +msgctxt "path-option" +msgid "Game Endings" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:59 src/frontend/mame/ui/selmenu.cpp:88 -msgid "Select" +#: src/frontend/mame/ui/dirmenu.cpp:59 +msgctxt "path-option" +msgid "Bosses" msgstr "" #: src/frontend/mame/ui/dirmenu.cpp:60 -msgid "GameOver" +msgctxt "path-option" +msgid "Artwork Previews" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:61 +msgctxt "path-option" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/dirmenu.cpp:62 +msgctxt "path-option" +msgid "Game Over Screens" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:61 src/frontend/mame/ui/selmenu.cpp:86 +#: src/frontend/mame/ui/dirmenu.cpp:63 +msgctxt "path-option" msgid "HowTo" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:62 src/frontend/mame/ui/selmenu.cpp:83 +#: src/frontend/mame/ui/dirmenu.cpp:64 +msgctxt "path-option" msgid "Logos" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:63 src/frontend/mame/ui/selmenu.cpp:87 +#: src/frontend/mame/ui/dirmenu.cpp:65 +msgctxt "path-option" msgid "Scores" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:64 src/frontend/mame/ui/selmenu.cpp:84 +#: src/frontend/mame/ui/dirmenu.cpp:66 +msgctxt "path-option" msgid "Versus" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:65 src/frontend/mame/ui/selmenu.cpp:90 +#: src/frontend/mame/ui/dirmenu.cpp:67 +msgctxt "path-option" msgid "Covers" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:118 +#: src/frontend/mame/ui/dirmenu.cpp:120 msgid "Folders Setup" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:169 +#: src/frontend/mame/ui/dirmenu.cpp:171 #, c-format msgid "Current %1$s Folders" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Change Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:181 +#: src/frontend/mame/ui/dirmenu.cpp:183 msgid "Add Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:184 +#: src/frontend/mame/ui/dirmenu.cpp:186 msgid "Remove Folder" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Change %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:419 +#: src/frontend/mame/ui/dirmenu.cpp:421 #, c-format msgid "Add %1$s Folder - Search: %2$s_" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:430 +#: src/frontend/mame/ui/dirmenu.cpp:432 msgid "Press TAB to set" msgstr "" -#: src/frontend/mame/ui/dirmenu.cpp:514 +#: src/frontend/mame/ui/dirmenu.cpp:516 #, c-format msgid "Remove %1$s Folder" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " COLORS" msgstr "" -#: src/frontend/mame/ui/viewgfx.cpp:428 +#: src/frontend/mame/ui/viewgfx.cpp:436 msgid " PENS" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:604 +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = 1/%1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1224 src/frontend/mame/ui/viewgfx.cpp:1255 +#, c-format +msgid "Zoom = %1$d" +msgstr "" + +#: src/frontend/mame/ui/viewgfx.cpp:1262 +msgid "Expand to fit" +msgstr "" + +#: src/frontend/mame/ui/selgame.cpp:808 msgid "Configure Machine" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1046 +#: src/frontend/mame/ui/selgame.cpp:1279 #, c-format msgid "Romset\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1047 +#: src/frontend/mame/ui/selgame.cpp:1280 #, c-format msgid "Year\t%1$s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1048 +#: src/frontend/mame/ui/selgame.cpp:1281 #, c-format msgid "Manufacturer\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1052 +#: src/frontend/mame/ui/selgame.cpp:1285 #, c-format msgid "Driver is Clone of\t%1$-.100s\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1054 +#: src/frontend/mame/ui/selgame.cpp:1287 msgid "Driver is Parent\t\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1057 +#: src/frontend/mame/ui/selgame.cpp:1290 msgid "Analog Controls\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1059 +#: src/frontend/mame/ui/selgame.cpp:1292 msgid "Keyboard Inputs\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1062 +#: src/frontend/mame/ui/selgame.cpp:1295 msgid "Overall\tNOT WORKING\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1064 +#: src/frontend/mame/ui/selgame.cpp:1297 msgid "Overall\tUnemulated Protection\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1066 +#: src/frontend/mame/ui/selgame.cpp:1299 msgid "Overall\tWorking\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1069 +#: src/frontend/mame/ui/selgame.cpp:1302 msgid "Graphics\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1071 +#: src/frontend/mame/ui/selgame.cpp:1304 msgid "Graphics\tWrong Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1073 +#: src/frontend/mame/ui/selgame.cpp:1306 msgid "Graphics\tImperfect Colors\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1075 +#: src/frontend/mame/ui/selgame.cpp:1308 msgid "Graphics\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1077 +#: src/frontend/mame/ui/selgame.cpp:1310 msgid "Graphics\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1080 +#: src/frontend/mame/ui/selgame.cpp:1313 msgid "Sound\tNone\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1082 +#: src/frontend/mame/ui/selgame.cpp:1315 msgid "Sound\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1084 +#: src/frontend/mame/ui/selgame.cpp:1317 msgid "Sound\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1086 +#: src/frontend/mame/ui/selgame.cpp:1319 msgid "Sound\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1089 +#: src/frontend/mame/ui/selgame.cpp:1322 msgid "Capture\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1091 +#: src/frontend/mame/ui/selgame.cpp:1324 msgid "Capture\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1094 +#: src/frontend/mame/ui/selgame.cpp:1327 msgid "Camera\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1096 +#: src/frontend/mame/ui/selgame.cpp:1329 msgid "Camera\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1099 +#: src/frontend/mame/ui/selgame.cpp:1332 msgid "Microphone\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1101 +#: src/frontend/mame/ui/selgame.cpp:1334 msgid "Microphone\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1104 +#: src/frontend/mame/ui/selgame.cpp:1337 msgid "Controls\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1106 +#: src/frontend/mame/ui/selgame.cpp:1339 msgid "Controls\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1109 +#: src/frontend/mame/ui/selgame.cpp:1342 msgid "Keyboard\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1111 +#: src/frontend/mame/ui/selgame.cpp:1344 msgid "Keyboard\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1114 +#: src/frontend/mame/ui/selgame.cpp:1347 msgid "Mouse\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1116 +#: src/frontend/mame/ui/selgame.cpp:1349 msgid "Mouse\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1119 +#: src/frontend/mame/ui/selgame.cpp:1352 msgid "Media\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1121 +#: src/frontend/mame/ui/selgame.cpp:1354 msgid "Media\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1124 +#: src/frontend/mame/ui/selgame.cpp:1357 msgid "Disk\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1126 +#: src/frontend/mame/ui/selgame.cpp:1359 msgid "Disk\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1129 +#: src/frontend/mame/ui/selgame.cpp:1362 msgid "Printer\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1131 +#: src/frontend/mame/ui/selgame.cpp:1364 msgid "Printer\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1134 +#: src/frontend/mame/ui/selgame.cpp:1367 msgid "Mag. Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1136 +#: src/frontend/mame/ui/selgame.cpp:1369 msgid "Mag. Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1139 +#: src/frontend/mame/ui/selgame.cpp:1372 msgid "Punch Tape\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1141 +#: src/frontend/mame/ui/selgame.cpp:1374 msgid "Punch Tape\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1144 +#: src/frontend/mame/ui/selgame.cpp:1377 msgid "Mag. Drum\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1146 +#: src/frontend/mame/ui/selgame.cpp:1379 msgid "Mag. Drum\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1149 +#: src/frontend/mame/ui/selgame.cpp:1382 msgid "(EP)ROM\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1151 +#: src/frontend/mame/ui/selgame.cpp:1384 msgid "(EP)ROM\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1154 +#: src/frontend/mame/ui/selgame.cpp:1387 msgid "Communications\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1156 +#: src/frontend/mame/ui/selgame.cpp:1389 msgid "Communications\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1159 +#: src/frontend/mame/ui/selgame.cpp:1392 msgid "LAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1161 +#: src/frontend/mame/ui/selgame.cpp:1394 msgid "LAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1164 +#: src/frontend/mame/ui/selgame.cpp:1397 msgid "WAN\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1166 +#: src/frontend/mame/ui/selgame.cpp:1399 msgid "WAN\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1169 +#: src/frontend/mame/ui/selgame.cpp:1402 msgid "Timing\tUnimplemented\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1171 +#: src/frontend/mame/ui/selgame.cpp:1404 msgid "Timing\tImperfect\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1173 +#: src/frontend/mame/ui/selgame.cpp:1406 msgid "Mechanical Machine\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1174 +#: src/frontend/mame/ui/selgame.cpp:1407 msgid "Requires Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1175 +#: src/frontend/mame/ui/selgame.cpp:1408 msgid "Requires Clickable Artwork\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1177 +#: src/frontend/mame/ui/selgame.cpp:1410 msgid "Support Cocktail\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1178 +#: src/frontend/mame/ui/selgame.cpp:1411 msgid "Driver is BIOS\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1179 +#: src/frontend/mame/ui/selgame.cpp:1412 msgid "Support Save\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tVertical\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1180 +#: src/frontend/mame/ui/selgame.cpp:1413 msgid "Screen Orientation\tHorizontal\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tYes\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1190 +#: src/frontend/mame/ui/selgame.cpp:1423 msgid "Requires CHD\tNo\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1203 +#: src/frontend/mame/ui/selgame.cpp:1436 msgid "ROM Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1205 +#: src/frontend/mame/ui/selgame.cpp:1438 msgid "ROM Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1208 +#: src/frontend/mame/ui/selgame.cpp:1441 msgid "Samples Audit Result\tNone Needed\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1210 +#: src/frontend/mame/ui/selgame.cpp:1443 msgid "Samples Audit Result\tOK\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1212 +#: src/frontend/mame/ui/selgame.cpp:1445 msgid "Samples Audit Result\tBAD\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1216 +#: src/frontend/mame/ui/selgame.cpp:1449 msgid "" "ROM Audit \tDisabled\n" "Samples Audit \tDisabled\n" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1406 +#: src/frontend/mame/ui/selgame.cpp:1639 #, c-format msgid "%1$s %2$s ( %3$d / %4$d machines (%5$d BIOS) )" msgstr "" -#: src/frontend/mame/ui/selgame.cpp:1434 -#, c-format -msgid "Romset: %1$-.100s" -msgstr "" - -#: src/frontend/mame/ui/selgame.cpp:1441 +#: src/frontend/mame/ui/selgame.cpp:1667 #, c-format msgid "System: %1$-.100s" msgstr "" @@ -2075,29 +2339,29 @@ msgstr "" msgid "Double click or press %1$s to select" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:97 +#: src/frontend/mame/ui/auditmenu.cpp:49 #, c-format msgid "Audit ROMs for %1$u machines marked unavailable?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:100 +#: src/frontend/mame/ui/auditmenu.cpp:52 #, c-format msgid "Audit ROMs for all %1$u machines?" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:105 +#: src/frontend/mame/ui/auditmenu.cpp:57 #, c-format msgid "(results will be saved to %1$s)" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:131 +#: src/frontend/mame/ui/auditmenu.cpp:83 #, c-format msgid "" "Auditing ROMs for machine %2$u of %3$u...\n" "%1$s" msgstr "" -#: src/frontend/mame/ui/auditmenu.cpp:143 +#: src/frontend/mame/ui/auditmenu.cpp:95 msgid "Start Audit" msgstr "" @@ -2117,211 +2381,246 @@ msgstr "" msgid "Hide Both" msgstr "" -#: src/frontend/mame/ui/custui.cpp:171 +#: src/frontend/mame/ui/custui.cpp:176 msgid "Fonts" msgstr "" -#: src/frontend/mame/ui/custui.cpp:172 +#: src/frontend/mame/ui/custui.cpp:177 msgid "Colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:181 +#: src/frontend/mame/ui/custui.cpp:180 +msgid "Language" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:183 +msgid "System Names" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:186 msgid "Show side panels" msgstr "" -#: src/frontend/mame/ui/custui.cpp:193 -msgid "Custom UI Settings" +#: src/frontend/mame/ui/custui.cpp:198 +msgid "UI Customization Settings" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:212 src/frontend/mame/ui/custui.cpp:256 +msgid "[built-in]" msgstr "" -#: src/frontend/mame/ui/custui.cpp:245 +#: src/frontend/mame/ui/custui.cpp:338 msgid "default" msgstr "" -#: src/frontend/mame/ui/custui.cpp:366 +#: src/frontend/mame/ui/custui.cpp:459 msgid "UI Font" msgstr "" -#: src/frontend/mame/ui/custui.cpp:371 +#: src/frontend/mame/ui/custui.cpp:464 msgid "Bold" msgstr "" -#: src/frontend/mame/ui/custui.cpp:372 +#: src/frontend/mame/ui/custui.cpp:465 msgid "Italic" msgstr "" -#: src/frontend/mame/ui/custui.cpp:377 +#: src/frontend/mame/ui/custui.cpp:470 msgid "Lines" msgstr "" -#: src/frontend/mame/ui/custui.cpp:383 +#: src/frontend/mame/ui/custui.cpp:476 msgid "Infos text size" msgstr "" -#: src/frontend/mame/ui/custui.cpp:397 +#: src/frontend/mame/ui/custui.cpp:490 msgid "UI Fonts Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:406 +#: src/frontend/mame/ui/custui.cpp:499 msgid "Sample text - Lorem ipsum dolor sit amet, consectetur adipiscing elit." msgstr "" -#: src/frontend/mame/ui/custui.cpp:489 +#: src/frontend/mame/ui/custui.cpp:582 msgid "Normal text" msgstr "" -#: src/frontend/mame/ui/custui.cpp:490 +#: src/frontend/mame/ui/custui.cpp:583 msgid "Selected color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:491 +#: src/frontend/mame/ui/custui.cpp:584 msgid "Normal text background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:492 +#: src/frontend/mame/ui/custui.cpp:585 msgid "Selected background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:493 +#: src/frontend/mame/ui/custui.cpp:586 msgid "Subitem color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:494 src/frontend/mame/ui/custui.cpp:550 +#: src/frontend/mame/ui/custui.cpp:587 src/frontend/mame/ui/custui.cpp:643 msgid "Clone" msgstr "" -#: src/frontend/mame/ui/custui.cpp:495 +#: src/frontend/mame/ui/custui.cpp:588 msgid "Border" msgstr "" -#: src/frontend/mame/ui/custui.cpp:496 +#: src/frontend/mame/ui/custui.cpp:589 msgid "Background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:497 +#: src/frontend/mame/ui/custui.cpp:590 msgid "Dipswitch" msgstr "" -#: src/frontend/mame/ui/custui.cpp:498 +#: src/frontend/mame/ui/custui.cpp:591 msgid "Unavailable color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:499 +#: src/frontend/mame/ui/custui.cpp:592 msgid "Slider color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:500 +#: src/frontend/mame/ui/custui.cpp:593 msgid "Gfx viewer background" msgstr "" -#: src/frontend/mame/ui/custui.cpp:501 +#: src/frontend/mame/ui/custui.cpp:594 msgid "Mouse over color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:502 +#: src/frontend/mame/ui/custui.cpp:595 msgid "Mouse over background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:503 +#: src/frontend/mame/ui/custui.cpp:596 msgid "Mouse down color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:504 +#: src/frontend/mame/ui/custui.cpp:597 msgid "Mouse down background color" msgstr "" -#: src/frontend/mame/ui/custui.cpp:507 +#: src/frontend/mame/ui/custui.cpp:600 msgid "Restore originals colors" msgstr "" -#: src/frontend/mame/ui/custui.cpp:519 +#: src/frontend/mame/ui/custui.cpp:612 msgid "UI Colors Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:528 +#: src/frontend/mame/ui/custui.cpp:621 #, c-format msgid "Double click or press %1$s to change the color value" msgstr "" -#: src/frontend/mame/ui/custui.cpp:536 +#: src/frontend/mame/ui/custui.cpp:629 msgid "Menu Preview" msgstr "" -#: src/frontend/mame/ui/custui.cpp:546 +#: src/frontend/mame/ui/custui.cpp:639 msgid "Normal" msgstr "" -#: src/frontend/mame/ui/custui.cpp:547 +#: src/frontend/mame/ui/custui.cpp:640 msgid "Subitem" msgstr "" -#: src/frontend/mame/ui/custui.cpp:548 +#: src/frontend/mame/ui/custui.cpp:641 msgid "Selected" msgstr "" -#: src/frontend/mame/ui/custui.cpp:549 +#: src/frontend/mame/ui/custui.cpp:642 msgid "Mouse Over" msgstr "" -#: src/frontend/mame/ui/custui.cpp:779 +#: src/frontend/mame/ui/custui.cpp:872 msgid "ARGB Settings" msgstr "" -#: src/frontend/mame/ui/custui.cpp:784 src/frontend/mame/ui/custui.cpp:787 +#: src/frontend/mame/ui/custui.cpp:877 src/frontend/mame/ui/custui.cpp:880 +msgctxt "color-channel" msgid "Alpha" msgstr "" -#: src/frontend/mame/ui/custui.cpp:792 src/frontend/mame/ui/custui.cpp:795 -#: src/frontend/mame/ui/custui.cpp:938 +#: src/frontend/mame/ui/custui.cpp:885 src/frontend/mame/ui/custui.cpp:888 +msgctxt "color-channel" msgid "Red" msgstr "" -#: src/frontend/mame/ui/custui.cpp:800 src/frontend/mame/ui/custui.cpp:803 -#: src/frontend/mame/ui/custui.cpp:941 +#: src/frontend/mame/ui/custui.cpp:893 src/frontend/mame/ui/custui.cpp:896 +msgctxt "color-channel" msgid "Green" msgstr "" -#: src/frontend/mame/ui/custui.cpp:808 src/frontend/mame/ui/custui.cpp:811 -#: src/frontend/mame/ui/custui.cpp:942 +#: src/frontend/mame/ui/custui.cpp:901 src/frontend/mame/ui/custui.cpp:904 +msgctxt "color-channel" msgid "Blue" msgstr "" -#: src/frontend/mame/ui/custui.cpp:814 +#: src/frontend/mame/ui/custui.cpp:907 msgid "Choose from palette" msgstr "" -#: src/frontend/mame/ui/custui.cpp:853 +#: src/frontend/mame/ui/custui.cpp:946 msgid "Color preview =" msgstr "" -#: src/frontend/mame/ui/custui.cpp:934 +#: src/frontend/mame/ui/custui.cpp:1027 +msgctxt "color-preset" msgid "White" msgstr "" -#: src/frontend/mame/ui/custui.cpp:935 +#: src/frontend/mame/ui/custui.cpp:1028 +msgctxt "color-preset" msgid "Silver" msgstr "" -#: src/frontend/mame/ui/custui.cpp:936 +#: src/frontend/mame/ui/custui.cpp:1029 +msgctxt "color-preset" msgid "Gray" msgstr "" -#: src/frontend/mame/ui/custui.cpp:937 +#: src/frontend/mame/ui/custui.cpp:1030 +msgctxt "color-preset" msgid "Black" msgstr "" -#: src/frontend/mame/ui/custui.cpp:939 +#: src/frontend/mame/ui/custui.cpp:1031 +msgctxt "color-preset" +msgid "Red" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1032 +msgctxt "color-preset" msgid "Orange" msgstr "" -#: src/frontend/mame/ui/custui.cpp:940 +#: src/frontend/mame/ui/custui.cpp:1033 +msgctxt "color-preset" msgid "Yellow" msgstr "" -#: src/frontend/mame/ui/custui.cpp:943 +#: src/frontend/mame/ui/custui.cpp:1034 +msgctxt "color-preset" +msgid "Green" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1035 +msgctxt "color-preset" +msgid "Blue" +msgstr "" + +#: src/frontend/mame/ui/custui.cpp:1036 +msgctxt "color-preset" msgid "Violet" msgstr "" -#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:757 +#: src/frontend/mame/ui/about.cpp:60 src/frontend/mame/ui/selmenu.cpp:743 #, c-format msgid "%1$s %2$s" msgstr "" @@ -2428,137 +2727,215 @@ msgid "Select New Machine" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:76 -msgid "Control Panels" +msgctxt "selmenu-artwork" +msgid "Snapshots" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:77 +msgctxt "selmenu-artwork" +msgid "Cabinet" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:78 +msgctxt "selmenu-artwork" +msgid "Control Panel" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:79 +msgctxt "selmenu-artwork" +msgid "PCB" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:80 +msgctxt "selmenu-artwork" +msgid "Flyer" msgstr "" #: src/frontend/mame/ui/selmenu.cpp:81 +msgctxt "selmenu-artwork" +msgid "Title Screen" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:82 +msgctxt "selmenu-artwork" +msgid "Ending" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:83 +msgctxt "selmenu-artwork" msgid "Artwork Preview" msgstr "" +#: src/frontend/mame/ui/selmenu.cpp:84 +msgctxt "selmenu-artwork" +msgid "Bosses" +msgstr "" + #: src/frontend/mame/ui/selmenu.cpp:85 +msgctxt "selmenu-artwork" +msgid "Logo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:86 +msgctxt "selmenu-artwork" +msgid "Versus" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:87 +msgctxt "selmenu-artwork" msgid "Game Over" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:94 +#: src/frontend/mame/ui/selmenu.cpp:88 +msgctxt "selmenu-artwork" +msgid "HowTo" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:89 +msgctxt "selmenu-artwork" +msgid "Scores" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:90 +msgctxt "selmenu-artwork" +msgid "Select" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:91 +msgctxt "selmenu-artwork" +msgid "Marquee" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:92 +msgctxt "selmenu-artwork" +msgid "Covers" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:96 msgid "Add or remove favorites" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:95 +#: src/frontend/mame/ui/selmenu.cpp:97 msgid "Export displayed list to file" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:96 +#: src/frontend/mame/ui/selmenu.cpp:98 msgid "Show DATs view" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:320 +#: src/frontend/mame/ui/selmenu.cpp:319 msgid "Software part selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:426 +#: src/frontend/mame/ui/selmenu.cpp:425 msgid "BIOS selection:" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:681 +#: src/frontend/mame/ui/selmenu.cpp:664 #, c-format msgid "Software is clone of: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:683 +#: src/frontend/mame/ui/selmenu.cpp:666 msgid "Software is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:688 +#: src/frontend/mame/ui/selmenu.cpp:671 msgid "Supported: No" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:693 +#: src/frontend/mame/ui/selmenu.cpp:676 msgid "Supported: Partial" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:698 +#: src/frontend/mame/ui/selmenu.cpp:681 msgid "Supported: Yes" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:703 +#: src/frontend/mame/ui/selmenu.cpp:686 #, c-format -msgid "romset: %1$-.100s" +msgid "Software list/item: %1$s:%2$s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:719 +#: src/frontend/mame/ui/selmenu.cpp:694 #, c-format -msgid "Driver is clone of: %1$-.100s" +msgid "Romset: %1$-.100s" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:721 +#: src/frontend/mame/ui/selmenu.cpp:703 msgid "Driver is parent" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2198 +#: src/frontend/mame/ui/selmenu.cpp:705 src/frontend/mame/ui/selmenu.cpp:707 +#, c-format +msgid "Driver is clone of: %1$-.100s" +msgstr "" + +#: src/frontend/mame/ui/selmenu.cpp:2176 msgid "Images" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2199 +#: src/frontend/mame/ui/selmenu.cpp:2177 msgid "Infos" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2508 +#: src/frontend/mame/ui/selmenu.cpp:2486 msgid "" "Required ROM/disk images for the selected system are missing or incorrect. " "Please acquire the correct files or select a different system.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2524 +#: src/frontend/mame/ui/selmenu.cpp:2502 msgid "" "Required ROM/disk images for the selected software are missing or incorrect. " "Please acquire the correct files or select a different software item.\n" "\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2540 +#: src/frontend/mame/ui/selmenu.cpp:2518 msgid "incorrect checksum" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2543 +#: src/frontend/mame/ui/selmenu.cpp:2521 msgid "incorrect length" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2546 +#: src/frontend/mame/ui/selmenu.cpp:2524 msgid "not found" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2557 +#: src/frontend/mame/ui/selmenu.cpp:2535 #, c-format msgid "%1$s (%2$s) - %3$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2559 +#: src/frontend/mame/ui/selmenu.cpp:2537 #, c-format msgid "%1$s - %2$s\n" msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2563 +#: src/frontend/mame/ui/selmenu.cpp:2541 msgid "Press any key to continue." msgstr "" -#: src/frontend/mame/ui/selmenu.cpp:2664 -msgid "Usage" -msgstr "" - -#: src/frontend/mame/ui/selmenu.cpp:2699 +#: src/frontend/mame/ui/selmenu.cpp:2670 msgid "General Info" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:135 +#: src/frontend/mame/ui/sndmenu.cpp:148 msgid "Sound" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:136 +#: src/frontend/mame/ui/sndmenu.cpp:149 +msgid "Compressor" +msgstr "" + +#: src/frontend/mame/ui/sndmenu.cpp:150 msgid "Sample Rate" msgstr "" -#: src/frontend/mame/ui/sndmenu.cpp:137 +#: src/frontend/mame/ui/sndmenu.cpp:151 msgid "Use External Samples" msgstr "" @@ -3146,7 +3523,7 @@ msgstr "" msgid "Gameinit" msgstr "" -#: plugins/data/data_history.lua:171 +#: plugins/data/data_history.lua:172 msgid "History" msgstr "" @@ -440,7 +440,7 @@ endif endif # BIGENDIAN ifndef PYTHON_EXECUTABLE -PYTHON := python +PYTHON := python3 else PYTHON := $(PYTHON_EXECUTABLE) endif @@ -1915,8 +1915,10 @@ shaders: bgfx-tools $(GENDIR)/mame.pot: FORCE $(SILENT) echo Generating mame.pot - $(SILENT) find src -iname "*.cpp" -print0 | xargs -0 xgettext --from-code=UTF-8 -k_ -k__ -o $@ - $(SILENT) find plugins -iname "*.lua" -print0 | xargs -0 xgettext --from-code=UTF-8 -k_ -k__ -j -o $@ + $(SILENT) find src "(" -name "*.cpp" -o -name "*.ipp" ")" -print0 | xargs -0 \ + xgettext -o $@ --from-code=UTF-8 --language=C++ -k_:1,1t -k_:1c,2,2t -kN_ -kN_p:1c,2 + $(SILENT) find plugins -name "*.lua" -print0 | xargs -0 \ + xgettext -o $@ --from-code=UTF-8 --language=Lua -k_:1,1t -k_:1c,2,2t -kN_ -kN_p:1c,2 -j translation: $(GENDIR)/mame.pot $(SILENT) find language -name "*.po" -print0 | xargs -0 -n 1 -I %% msgmerge -U -N %% $< diff --git a/plugins/boot.lua b/plugins/boot.lua index 8ae3e069755..28ba9e40498 100644 --- a/plugins/boot.lua +++ b/plugins/boot.lua @@ -3,6 +3,8 @@ require('lfs') _G._ = emu.lang_translate +_G.N_ = function (message) return message end +_G.N_p = function (context, message) return message end _G.emu.plugin = {} -- table to contain plugin interfaces -- substitute environment variables in the plugins path from options local dirs = emu.subst_env(manager.options.entries.pluginspath:value()) diff --git a/scripts/build/complay.py b/scripts/build/complay.py index 445d25fe8ab..81516bc3ee7 100755 --- a/scripts/build/complay.py +++ b/scripts/build/complay.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 ## ## license:BSD-3-Clause ## copyright-holders:Vas Crabb @@ -12,11 +12,6 @@ import xml.sax.saxutils import zlib -# workaround for version incompatibility -if sys.version_info > (3, ): - long = int - - class ErrorHandler(object): def __init__(self, **kwargs): super(ErrorHandler, self).__init__(**kwargs) @@ -347,7 +342,7 @@ class LayoutChecker(Minifyer): self.handleError('Element mamelayout missing attribute version') else: try: - long(attrs['version']) + int(attrs['version']) except: self.handleError('Element mamelayout attribute version "%s" is not an integer' % (attrs['version'], )) self.have_script = None diff --git a/scripts/build/msgfmt.py b/scripts/build/msgfmt.py index 4147d5becb9..3f731e941ea 100644 --- a/scripts/build/msgfmt.py +++ b/scripts/build/msgfmt.py @@ -1,12 +1,12 @@ -#! /usr/bin/env python -# -*- coding: utf-8 -*- +#! /usr/bin/env python3 # Written by Martin v. Löwis <loewis@informatik.hu-berlin.de> """Generate binary message catalog from textual translation description. This program converts a textual Uniforum-style message catalog (.po file) into a binary GNU catalog (.mo file). This is essentially the same function as the -GNU msgfmt program, however, it is a simpler implementation. +GNU msgfmt program, however, it is a simpler implementation. Currently it +does not handle plural forms but it does handle message contexts. Usage: msgfmt.py [OPTIONS] filename.po @@ -25,14 +25,12 @@ Options: Display version information and exit. """ -from __future__ import print_function import os import sys +import ast import getopt import struct import array -import re -import codecs from email.parser import HeaderParser __version__ = "1.2" @@ -40,7 +38,6 @@ __version__ = "1.2" MESSAGES = {} - def usage(code, msg=''): print(__doc__, file=sys.stderr) if msg: @@ -48,33 +45,14 @@ def usage(code, msg=''): sys.exit(code) - -def add(id, str, fuzzy): +def add(ctxt, id, str, fuzzy): "Add a non-fuzzy translation to the dictionary." global MESSAGES if not fuzzy and str: - MESSAGES[id] = str - -def dequote(s): - if (s[0] == s[-1]) and s.startswith(("'", '"')): - return s[1:-1] - return s - -# decode_escapes from http://stackoverflow.com/a/24519338 -ESCAPE_SEQUENCE_RE = re.compile(r''' - ( \\U........ # 8-digit hex escapes - | \\u.... # 4-digit hex escapes - | \\x.. # 2-digit hex escapes - | \\[0-7]{1,3} # Octal escapes - | \\N\{[^}]+\} # Unicode characters by name - | \\[\\'"abfnrtv] # Single-character escapes - )''', re.UNICODE | re.VERBOSE) - -def decode_escapes(s): - def decode_match(match): - return codecs.decode(match.group(0), 'unicode-escape') - - return ESCAPE_SEQUENCE_RE.sub(decode_match, s) + if ctxt is None: + MESSAGES[id] = str + else: + MESSAGES[b"%b\x04%b" % (ctxt, id)] = str def generate(): @@ -112,17 +90,16 @@ def generate(): 7*4, # start of key index 7*4+len(keys)*8, # start of value index 0, 0) # size and offset of hash table - offsdata = array.array("i", offsets) - output += offsdata.tobytes() if hasattr(offsdata, "tobytes") else offsdata.tostring() + output += array.array("i", offsets).tobytes() output += ids output += strs return output - def make(filename, outfile): ID = 1 STR = 2 + CTXT = 3 # Compute .mo name from .po name and arguments if filename.endswith('.po'): @@ -133,31 +110,28 @@ def make(filename, outfile): outfile = os.path.splitext(infile)[0] + '.mo' try: - lines = open(infile, 'rb').readlines() + with open(infile, 'rb') as f: + lines = f.readlines() except IOError as msg: print(msg, file=sys.stderr) sys.exit(1) - section = None + section = msgctxt = None fuzzy = 0 - empty = 0 - header_attempted = False - - # Start off assuming Latin-1, so everything decodes without failure, - # until we know the exact encoding - encoding = 'latin-1' # Start off assuming Latin-1, so everything decodes without failure, # until we know the exact encoding encoding = 'latin-1' # Parse the catalog - for lno, l in enumerate(lines): + lno = 0 + for l in lines: l = l.decode(encoding) + lno += 1 # If we get a comment line after a msgstr, this is a new entry if l[0] == '#' and section == STR: - add(msgid, msgstr, fuzzy) - section = None + add(msgctxt, msgid, msgstr, fuzzy) + section = msgctxt = None fuzzy = 0 # Record a fuzzy mark if l[:2] == '#,' and 'fuzzy' in l: @@ -165,10 +139,16 @@ def make(filename, outfile): # Skip comments if l[0] == '#': continue - # Now we are in a msgid section, output previous section - if l.startswith('msgid') and not l.startswith('msgid_plural'): + # Now we are in a msgid or msgctxt section, output previous section + if l.startswith('msgctxt'): if section == STR: - add(msgid, msgstr, fuzzy) + add(msgctxt, msgid, msgstr, fuzzy) + section = CTXT + l = l[7:] + msgctxt = b'' + elif l.startswith('msgid') and not l.startswith('msgid_plural'): + if section == STR: + add(msgctxt, msgid, msgstr, fuzzy) if not msgid: # See whether there is an encoding declaration p = HeaderParser() @@ -179,14 +159,6 @@ def make(filename, outfile): l = l[5:] msgid = msgstr = b'' is_plural = False - if l.strip() == '""': - # Check if next line is msgstr. If so, this is a multiline msgid. - if lines[lno+1].decode(encoding).startswith('msgstr'): - # If this is the first empty msgid and is followed by msgstr, this is the header, which may contain the encoding declaration. - # Otherwise this file is not valid - if empty > 1: - print("Found multiple empty msgids on line " + str(lno) + ", not valid!") - empty += 1 # This is a message with plural forms elif l.startswith('msgid_plural'): if section != ID: @@ -208,26 +180,6 @@ def make(filename, outfile): if msgstr: msgstr += b'\0' # Separator of the various plural forms else: - if (l[6:].strip() == '""') and (empty == 1) and (not header_attempted): - header = "" - # parse up until next empty line = end of header - hdrno = lno - while(hdrno < len(lines)-1): - # This is a roundabout way to strip non-ASCII unicode characters from the header. - # As we are only parsing out the encoding, we don't need any unicode chars in it. - l = lines[hdrno+1].decode('unicode_escape').encode('ascii','ignore').decode(encoding) - if l.strip(): - header += decode_escapes(dequote(l.strip())) - else: - break - hdrno += 1 - # See whether there is an encoding declaration - if(hdrno > lno): - p = HeaderParser() - charset = p.parsestr(str(header)).get_content_charset() - header_attempted = True - if charset: - encoding = charset if is_plural: print('indexed msgstr required for plural on %s:%d' % (infile, lno), file=sys.stderr) @@ -237,8 +189,10 @@ def make(filename, outfile): l = l.strip() if not l: continue - l = decode_escapes(dequote(l)) # strip quotes and replace newlines if present - if section == ID: + l = ast.literal_eval(l) + if section == CTXT: + msgctxt += l.encode(encoding) + elif section == ID: msgid += l.encode(encoding) elif section == STR: msgstr += l.encode(encoding) @@ -249,18 +203,18 @@ def make(filename, outfile): sys.exit(1) # Add last entry if section == STR: - add(msgid, msgstr, fuzzy) + add(msgctxt, msgid, msgstr, fuzzy) # Compute output output = generate() try: - open(outfile,"wb").write(output) + with open(outfile,"wb") as f: + f.write(output) except IOError as msg: print(msg, file=sys.stderr) - def main(): try: opts, args = getopt.getopt(sys.argv[1:], 'hVo:', diff --git a/scripts/build/png2bdc.py b/scripts/build/png2bdc.py index a1be5c552d0..adc4b185f44 100644 --- a/scripts/build/png2bdc.py +++ b/scripts/build/png2bdc.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 ## ## license:BSD-3-Clause ## copyright-holders:Aaron Giles, Andrew Gardner @@ -59,12 +59,8 @@ import os import png import sys -if sys.version_info >= (3,): - def b2p(v): - return bytes([v]) -else: - def b2p(v): - return chr(v) +def b2p(v): + return bytes([v]) ######################################## diff --git a/scripts/genie.lua b/scripts/genie.lua index 4f443116ebb..2d53bda770b 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -435,7 +435,7 @@ else LIBTYPE = "StaticLib" end -PYTHON = "python" +PYTHON = "python3" if _OPTIONS["PYTHON_EXECUTABLE"]~=nil then PYTHON = _OPTIONS["PYTHON_EXECUTABLE"] diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index c39d5f0b21f..fff3b94f0c8 100644 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -2209,7 +2209,7 @@ project "utf8proc" kind "StaticLib" defines { - "UTF8PROC_DLLEXPORT=" + "UTF8PROC_STATIC", } configuration "Debug" @@ -2223,9 +2223,6 @@ project "utf8proc" } configuration { } - defines { - "ZLIB_CONST", - } files { MAME_DIR .. "3rdparty/utf8proc/utf8proc.c" diff --git a/scripts/src/lib.lua b/scripts/src/lib.lua index 0f3d637d131..6b1bd29e3ea 100644 --- a/scripts/src/lib.lua +++ b/scripts/src/lib.lua @@ -25,6 +25,12 @@ project "utils" ext_includedir("utf8proc"), } +if not _OPTIONS["with-system-utf8proc"] then + defines { + "UTF8PROC_STATIC", + } +end + files { MAME_DIR .. "src/lib/util/abi.h", MAME_DIR .. "src/lib/util/avhuff.cpp", diff --git a/src/emu/emuopts.cpp b/src/emu/emuopts.cpp index 44f775dedfa..16ec1d29fb2 100644 --- a/src/emu/emuopts.cpp +++ b/src/emu/emuopts.cpp @@ -36,7 +36,7 @@ const options_entry emu_options::s_option_entries[] = // search path options { nullptr, nullptr, OPTION_HEADER, "CORE SEARCH PATH OPTIONS" }, - { OPTION_HOMEPATH, ".", OPTION_STRING, "path to base folder for plugin data (read/write)" }, + { OPTION_PLUGINDATAPATH, ".", OPTION_STRING, "path to base folder for plugin data (read/write)" }, { OPTION_MEDIAPATH ";rp;biospath;bp", "roms", OPTION_STRING, "path to ROM sets and hard disk images" }, { OPTION_HASHPATH ";hash_directory;hash", "hash", OPTION_STRING, "path to software definition files" }, { OPTION_SAMPLEPATH ";sp", "samples", OPTION_STRING, "path to audio sample sets" }, @@ -951,7 +951,7 @@ emu_options::software_options emu_options::evaluate_initial_softlist_options(con // ... // <sharedfeat name = "ctrl1_default" value = "paddle" /> // </software> - for (const feature_list_item &fi : swinfo->shared_info()) + for (const software_info_item &fi : swinfo->shared_features()) { const std::string default_suffix = "_default"; if (fi.name().size() > default_suffix.size() diff --git a/src/emu/emuopts.h b/src/emu/emuopts.h index 3df399ce8d6..59f651d946f 100644 --- a/src/emu/emuopts.h +++ b/src/emu/emuopts.h @@ -25,7 +25,7 @@ #define OPTION_WRITECONFIG "writeconfig" // core search path options -#define OPTION_HOMEPATH "homepath" +#define OPTION_PLUGINDATAPATH "homepath" #define OPTION_MEDIAPATH "rompath" #define OPTION_HASHPATH "hashpath" #define OPTION_SAMPLEPATH "samplepath" @@ -311,7 +311,7 @@ public: bool write_config() const { return bool_value(OPTION_WRITECONFIG); } // core search path options - const char *home_path() const { return value(OPTION_HOMEPATH); } + const char *plugin_data_path() const { return value(OPTION_PLUGINDATAPATH); } const char *media_path() const { return value(OPTION_MEDIAPATH); } const char *hash_path() const { return value(OPTION_HASHPATH); } const char *sample_path() const { return value(OPTION_SAMPLEPATH); } diff --git a/src/emu/softlist.cpp b/src/emu/softlist.cpp index 8ee8d0d8500..fe9d862ef1f 100644 --- a/src/emu/softlist.cpp +++ b/src/emu/softlist.cpp @@ -32,10 +32,10 @@ static std::regex s_potential_softlist_regex("\\w+(\\:\\w+)*"); //************************************************************************** //------------------------------------------------- -// feature_list_item - constructor +// software_info_item - constructor //------------------------------------------------- -feature_list_item::feature_list_item(const std::string &name, const std::string &value) : +software_info_item::software_info_item(const std::string &name, const std::string &value) : m_name(name), m_value(value) { @@ -43,10 +43,10 @@ feature_list_item::feature_list_item(const std::string &name, const std::string //------------------------------------------------- -// feature_list_item - constructor +// software_info_item - constructor //------------------------------------------------- -feature_list_item::feature_list_item(std::string &&name, std::string &&value) : +software_info_item::software_info_item(std::string &&name, std::string &&value) : m_name(std::move(name)), m_value(std::move(value)) { @@ -77,14 +77,8 @@ software_part::software_part(software_info &info, std::string &&name, std::strin const char *software_part::feature(std::string_view feature_name) const noexcept { // scan the feature list for an entry matching feature_name and return the value - auto iter = std::find_if( - m_featurelist.begin(), - m_featurelist.end(), - [&feature_name] (const feature_list_item &feature) { return feature.name() == feature_name; }); - - return iter != m_featurelist.end() - ? iter->value().c_str() - : nullptr; + auto const iter = m_features.find(feature_name); + return (iter != m_features.end()) ? iter->value().c_str() : nullptr; } @@ -192,7 +186,7 @@ class softlist_parser public: // construction (== execution) softlist_parser( - util::random_read &file, + util::read_stream &file, std::string_view filename, std::string &listname, std::string &description, @@ -261,7 +255,7 @@ private: //------------------------------------------------- softlist_parser::softlist_parser( - util::random_read &file, + util::read_stream &file, std::string_view filename, std::string &listname, std::string &description, @@ -290,7 +284,6 @@ softlist_parser::softlist_parser( XML_SetCharacterDataHandler(m_parser, &softlist_parser::data_handler); // parse the file contents - file.seek(0, SEEK_SET); char buffer[1024]; for (bool done = false; !done; ) { @@ -582,7 +575,7 @@ void softlist_parser::parse_main_start(const char *tagname, const char **attribu void softlist_parser::parse_main_end(const char *tagname) { if (strcmp(tagname, "notes") == 0) - m_notes = m_data_accum; + m_notes = std::move(m_data_accum); } @@ -622,7 +615,7 @@ void softlist_parser::parse_soft_start(const char *tagname, const char **attribu std::string infoname, infovalue; if (parse_name_and_value(attributes, infoname, infovalue)) - m_current_info->m_other_info.emplace_back(std::move(infoname), std::move(infovalue)); + m_current_info->m_info.emplace_back(std::move(infoname), std::move(infovalue)); else parse_error("Incomplete other_info definition"); } @@ -633,9 +626,14 @@ void softlist_parser::parse_soft_start(const char *tagname, const char **attribu std::string featname, featvalue; if (parse_name_and_value(attributes, featname, featvalue)) - m_current_info->m_shared_info.emplace_back(std::move(featname), std::move(featvalue)); + { + if (!m_current_info->m_shared_features.emplace(std::move(featname), std::move(featvalue)).second) + parse_error("Duplicate sharedfeat name"); + } else + { parse_error("Incomplete sharedfeat definition"); + } } // <part name='' interface=''> @@ -731,9 +729,14 @@ void softlist_parser::parse_part_start(const char *tagname, const char **attribu std::string featname, featvalue; if (parse_name_and_value(attributes, featname, featvalue)) - m_current_part->m_featurelist.emplace_back(std::move(featname), std::move(featvalue)); + { + if (!m_current_part->m_features.emplace(std::move(featname), std::move(featvalue)).second) + parse_error("Duplicate feature name"); + } else + { parse_error("Incomplete feature definition"); + } } // <dipswitch> @@ -871,19 +874,19 @@ void softlist_parser::parse_soft_end(const char *tagname) // <description> if (strcmp(tagname, "description") == 0) - m_current_info->m_longname = m_data_accum; + m_current_info->m_longname = std::move(m_data_accum); // <year> else if (strcmp(tagname, "year") == 0) - m_current_info->m_year = m_data_accum; + m_current_info->m_year = std::move(m_data_accum); // <publisher> else if (strcmp(tagname, "publisher") == 0) - m_current_info->m_publisher = m_data_accum; + m_current_info->m_publisher = std::move(m_data_accum); // <notes> else if (strcmp(tagname, "notes") == 0) - m_current_info->m_notes = m_data_accum; + m_current_info->m_notes = std::move(m_data_accum); // </part> else if (strcmp(tagname, "part") == 0) @@ -897,11 +900,10 @@ void softlist_parser::parse_soft_end(const char *tagname) if (!m_current_part->m_romdata.empty()) add_rom_entry("", "", 0, 0, ROMENTRYTYPE_END); - // get the info; if present, copy shared data (we assume name/value strings live - // in the string pool and don't need to be reallocated) + // get the info; if present, copy shared data if (m_current_info != nullptr) - for (const feature_list_item &item : m_current_info->shared_info()) - m_current_part->m_featurelist.emplace_back(item.name(), item.value()); + for (const software_info_item &item : m_current_info->shared_features()) + m_current_part->m_features.emplace(item.name(), item.value()); } } @@ -909,7 +911,7 @@ void softlist_parser::parse_soft_end(const char *tagname) void parse_software_list( - util::random_read &file, + util::read_stream &file, std::string_view filename, std::string &listname, std::string &description, diff --git a/src/emu/softlist.h b/src/emu/softlist.h index 2c7a4e545dd..e8587dd4505 100644 --- a/src/emu/softlist.h +++ b/src/emu/softlist.h @@ -19,6 +19,9 @@ #include "corefile.h" #include <list> +#include <set> +#include <string> +#include <string_view> //************************************************************************** @@ -45,21 +48,31 @@ enum class software_support //************************************************************************** // an item in a list of name/value pairs -class feature_list_item +class software_info_item { public: // construction/destruction - feature_list_item(std::string &&name, std::string &&value); - feature_list_item(const std::string &name, const std::string &value); - feature_list_item(feature_list_item const &) = delete; - feature_list_item(feature_list_item &&) = delete; - feature_list_item& operator=(feature_list_item const &) = delete; - feature_list_item& operator=(feature_list_item &&) = delete; + software_info_item(std::string &&name, std::string &&value); + software_info_item(const std::string &name, const std::string &value); + software_info_item(software_info_item const &) = default; + software_info_item(software_info_item &&) = default; + software_info_item& operator=(software_info_item const &) = default; + software_info_item& operator=(software_info_item &&) = default; // getters const std::string &name() const noexcept { return m_name; } const std::string &value() const noexcept { return m_value; } + // collection + struct compare + { + using is_transparent = void; + bool operator()(const software_info_item &a, const software_info_item &b) const noexcept { return a.m_name < b.m_name; } + bool operator()(const software_info_item &a, const std::string_view &b) const noexcept { return a.m_name < b; } + bool operator()(const std::string_view &a, const software_info_item &b) const noexcept { return a < b.m_name; } + }; + using set = std::set<software_info_item, compare>; + private: // internal state std::string m_name; @@ -84,7 +97,7 @@ public: software_info &info() const noexcept { return m_info; } const std::string &name() const noexcept { return m_name; } const std::string &interface() const noexcept { return m_interface; } - const std::list<feature_list_item> &featurelist() const noexcept { return m_featurelist; } + const software_info_item::set &features() const noexcept { return m_features; } const std::vector<rom_entry> &romdata() const noexcept { return m_romdata; } // helpers @@ -93,11 +106,11 @@ public: private: // internal state - software_info & m_info; - std::string m_name; - std::string m_interface; - std::list<feature_list_item> m_featurelist; - std::vector<rom_entry> m_romdata; + software_info & m_info; + std::string m_name; + std::string m_interface; + software_info_item::set m_features; + std::vector<rom_entry> m_romdata; }; @@ -121,8 +134,8 @@ public: const std::string &year() const { return m_year; } const std::string &publisher() const { return m_publisher; } const std::string ¬es() const { return m_notes; } - const std::list<feature_list_item> &other_info() const { return m_other_info; } - const std::list<feature_list_item> &shared_info() const { return m_shared_info; } + const std::list<software_info_item> &info() const { return m_info; } + const software_info_item::set &shared_features() const { return m_shared_features; } software_support supported() const { return m_supported; } const std::list<software_part> &parts() const { return m_partdata; } @@ -132,16 +145,16 @@ public: private: // internal state - software_support m_supported; - std::string m_shortname; - std::string m_longname; - std::string m_parentname; - std::string m_year; // Copyright year on title screen, actual release dates can be tracked in external resources - std::string m_publisher; - std::string m_notes; - std::list<feature_list_item> m_other_info; // Here we store info like developer, serial #, etc. which belong to the software entry as a whole - std::list<feature_list_item> m_shared_info; // Here we store info like TV standard compatibility, or add-on requirements, etc. which get inherited - // by each part of this software entry (after loading these are stored in partdata->featurelist) + software_support m_supported; + std::string m_shortname; + std::string m_longname; + std::string m_parentname; + std::string m_year; // Copyright year on title screen, actual release dates can be tracked in external resources + std::string m_publisher; + std::string m_notes; + std::list<software_info_item> m_info; // Here we store info like developer, serial #, etc. which belong to the software entry as a whole + software_info_item::set m_shared_features; // Here we store info like TV standard compatibility, or add-on requirements, etc. which get inherited + // by each part of this software entry (after loading these are stored in partdata->features) std::list<software_part> m_partdata; }; @@ -150,7 +163,7 @@ private: // parses a software list void parse_software_list( - util::random_read &file, + util::read_stream &file, std::string_view filename, std::string &listname, std::string &description, diff --git a/src/frontend/mame/clifront.cpp b/src/frontend/mame/clifront.cpp index bc78cb1112c..191ae747a4c 100644 --- a/src/frontend/mame/clifront.cpp +++ b/src/frontend/mame/clifront.cpp @@ -1136,9 +1136,12 @@ void cli_frontend::output_single_softlist(std::ostream &out, software_list_devic if (!swinfo.notes().empty()) util::stream_format(out, "\t\t\t<notes>%s</notes>\n", util::xml::normalize_string(swinfo.notes().c_str())); - for (const feature_list_item &flist : swinfo.other_info()) + for (const auto &flist : swinfo.info()) util::stream_format(out, "\t\t\t<info name=\"%s\" value=\"%s\"/>\n", flist.name(), util::xml::normalize_string(flist.value().c_str())); + for (const auto &flist : swinfo.shared_features()) + util::stream_format(out, "\t\t\t<sharedfeat name=\"%s\" value=\"%s\"/>\n", flist.name(), util::xml::normalize_string(flist.value().c_str())); + for (const software_part &part : swinfo.parts()) { util::stream_format(out, "\t\t\t<part name=\"%s\"", util::xml::normalize_string(part.name().c_str())); @@ -1147,7 +1150,7 @@ void cli_frontend::output_single_softlist(std::ostream &out, software_list_devic out << ">\n"; - for (const feature_list_item &flist : part.featurelist()) + for (const auto &flist : part.features()) util::stream_format(out, "\t\t\t\t<feature name=\"%s\" value=\"%s\" />\n", flist.name(), util::xml::normalize_string(flist.value().c_str())); // TODO: display ROM region information diff --git a/src/frontend/mame/language.cpp b/src/frontend/mame/language.cpp index eae75b3fd6f..4ecdc2aba0c 100644 --- a/src/frontend/mame/language.cpp +++ b/src/frontend/mame/language.cpp @@ -9,6 +9,8 @@ ***************************************************************************/ #include "emu.h" +#include "language.h" + #include "emuopts.h" #include "corestr.h" @@ -17,46 +19,20 @@ #include <memory> #include <new> #include <unordered_map> +#include <utility> namespace { -constexpr uint32_t MO_MAGIC = 0x950412de; -constexpr uint32_t MO_MAGIC_REVERSED = 0xde120495; - -struct cstr_hash -{ - size_t operator()(char const *s) const noexcept - { - // Bernstein string hash - size_t result(5381); - while (*s) - result = ((result << 5) + result) + u8(*s++); - return result; - } -}; - -struct cstr_compare -{ - size_t operator()(char const *x, char const *y) const noexcept - { - return !std::strcmp(x, y); - } -}; +constexpr u32 MO_MAGIC = 0x950412de; +constexpr u32 MO_MAGIC_REVERSED = 0xde120495; std::unique_ptr<u32 []> f_translation_data; -std::unordered_map<char const *, char const *, cstr_hash, cstr_compare> f_translation_map; +std::unordered_map<std::string_view, std::pair<char const *, u32> > f_translation_map; } // anonymous namespace -char const *lang_translate(char const *word) -{ - auto const found = f_translation_map.find(word); - return (f_translation_map.end() != found) ? found->second : word; -} - - void load_translation(emu_options &m_options) { f_translation_data.reset(); @@ -84,7 +60,7 @@ void load_translation(emu_options &m_options) return; } - f_translation_data.reset(new (std::nothrow) uint32_t [(size + 3) / 4]); + f_translation_data.reset(new (std::nothrow) u32 [(size + 3) / 4]); if (!f_translation_data) { file.close(); @@ -169,12 +145,81 @@ void load_translation(emu_options &m_options) continue; } - char const *const original = &data[original_offset]; - char const *const translation = &data[translation_offset]; - auto const ins = f_translation_map.emplace(original, translation); + std::string_view const original(&data[original_offset], original_length); + char const *const translation(&data[translation_offset]); + auto const ins = f_translation_map.emplace(original, std::make_pair(translation, translation_length)); if (!ins.second) - osd_printf_warning("Loading translation file %s: translation %u '%s'='%s' conflicts with previous translation '%s'='%s'\n", name, i, original, translation, ins.first->first, ins.first->second); + { + osd_printf_warning( + "Loading translation file %s: translation %u '%s'='%s' conflicts with previous translation '%s'='%s'\n", + name, + i, + original, + translation, + ins.first->first, + ins.first->second.first); + } } osd_printf_verbose("Loaded %u translations from file %s\n", f_translation_map.size(), name); } + + +char const *lang_translate(char const *message) +{ + auto const found = f_translation_map.find(message); + if (f_translation_map.end() != found) + return found->second.first; + return message; +} + + +std::string_view lang_translate(std::string_view message) +{ + auto const found = f_translation_map.find(message); + if (f_translation_map.end() != found) + return std::string_view(found->second.first, found->second.second); + return message; +} + + +char const *lang_translate(char const *context, char const *message) +{ + if (!f_translation_map.empty()) + { + auto const ctxlen(std::strlen(context)); + auto const msglen(std::strlen(message)); + std::string key; + key.reserve(ctxlen + 1 + msglen); + key.append(context, ctxlen); + key.append(1, '\004'); + key.append(message, msglen); + auto const found = f_translation_map.find(key); + if (f_translation_map.end() != found) + return found->second.first; + } + return message; +} + + +std::string_view lang_translate(char const *context, std::string_view message) +{ + return lang_translate(std::string_view(context), message); +} + + +std::string_view lang_translate(std::string_view context, std::string_view message) +{ + if (!f_translation_map.empty()) + { + std::string key; + key.reserve(context.length() + 1 + message.length()); + key.append(context); + key.append(1, '\004'); + key.append(message); + auto const found = f_translation_map.find(key); + if (f_translation_map.end() != found) + return std::string_view(found->second.first, found->second.second); + } + return message; +} diff --git a/src/frontend/mame/language.h b/src/frontend/mame/language.h index d688b2ba93a..93e3c491382 100644 --- a/src/frontend/mame/language.h +++ b/src/frontend/mame/language.h @@ -12,16 +12,25 @@ #pragma once +#include <string_view> + + //************************************************************************** // LOCALIZATION SUPPORT //************************************************************************** -#define _(param) lang_translate(param) -// Fake one to make possible using it in static text definitions, on those -// lang_translate must be called afterwards -#define __(param) param +#define _(...) lang_translate(__VA_ARGS__) + +#define N_(msg) (msg) +#define N_p(ctx, msg) (msg) void load_translation(emu_options &option); -const char *lang_translate(const char *word); + +char const *lang_translate(char const *message); +std::string_view lang_translate(std::string_view message); + +char const *lang_translate(char const *context, char const *message); +std::string_view lang_translate(char const *context, std::string_view message); +std::string_view lang_translate(std::string_view context, std::string_view message); #endif // MAME_FRONTEND_MAME_LANGUAGE_H diff --git a/src/frontend/mame/luaengine.cpp b/src/frontend/mame/luaengine.cpp index 54fdd78b01c..78521783541 100644 --- a/src/frontend/mame/luaengine.cpp +++ b/src/frontend/mame/luaengine.cpp @@ -761,7 +761,9 @@ void lua_engine::initialize() engine->machine().scheduler().timer_set(attotime::from_double(lua_tonumber(L, 1)), timer_expired_delegate(FUNC(lua_engine::resume), engine), ref, nullptr); return lua_yield(L, 0); }); - emu["lang_translate"] = &lang_translate; + emu["lang_translate"] = sol::overload( + static_cast<char const *(*)(char const *)>(&lang_translate), + static_cast<char const *(*)(char const *, char const *)>(&lang_translate)); emu["pid"] = &osd_getpid; emu["subst_env"] = [] (const std::string &str) diff --git a/src/frontend/mame/ui/auditmenu.cpp b/src/frontend/mame/ui/auditmenu.cpp index 66c1aab0597..6da405b3698 100644 --- a/src/frontend/mame/ui/auditmenu.cpp +++ b/src/frontend/mame/ui/auditmenu.cpp @@ -31,54 +31,6 @@ void *const ITEMREF_START = reinterpret_cast<void *>(std::uintptr_t(1)); } // anonymous namespace -bool sorted_game_list(const game_driver *x, const game_driver *y) -{ - bool clonex = (x->parent[0] != '0') || x->parent[1]; - int cx = -1; - if (clonex) - { - cx = driver_list::find(x->parent); - if ((0 > cx) || (driver_list::driver(cx).flags & machine_flags::IS_BIOS_ROOT)) - clonex = false; - } - - bool cloney = (y->parent[0] != '0') || y->parent[1]; - int cy = -1; - if (cloney) - { - cy = driver_list::find(y->parent); - if ((0 > cy) || (driver_list::driver(cy).flags & machine_flags::IS_BIOS_ROOT)) - cloney = false; - } - - if (!clonex && !cloney) - { - return (core_stricmp(x->type.fullname(), y->type.fullname()) < 0); - } - else if (clonex && cloney) - { - if (!core_stricmp(x->parent, y->parent)) - return (core_stricmp(x->type.fullname(), y->type.fullname()) < 0); - else - return (core_stricmp(driver_list::driver(cx).type.fullname(), driver_list::driver(cy).type.fullname()) < 0); - } - else if (!clonex && cloney) - { - if (!core_stricmp(x->name, y->parent)) - return true; - else - return (core_stricmp(x->type.fullname(), driver_list::driver(cy).type.fullname()) < 0); - } - else - { - if (!core_stricmp(x->parent, y->name)) - return false; - else - return (core_stricmp(driver_list::driver(cx).type.fullname(), y->type.fullname()) < 0); - } -} - - menu_audit::menu_audit(mame_ui_manager &mui, render_container &container, std::vector<ui_system_info> &availablesorted, mode audit_mode) : menu(mui, container) , m_worker_thread() diff --git a/src/frontend/mame/ui/auditmenu.h b/src/frontend/mame/ui/auditmenu.h index 435bf52cd34..33b0c54863a 100644 --- a/src/frontend/mame/ui/auditmenu.h +++ b/src/frontend/mame/ui/auditmenu.h @@ -53,8 +53,6 @@ private: phase m_phase; }; -bool sorted_game_list(const game_driver *x, const game_driver *y); - } // namespace ui #endif // MAME_FRONTEND_UI_AUDITMENU_H diff --git a/src/frontend/mame/ui/custui.cpp b/src/frontend/mame/ui/custui.cpp index c748bee1e7c..9b06465f9f8 100644 --- a/src/frontend/mame/ui/custui.cpp +++ b/src/frontend/mame/ui/custui.cpp @@ -30,10 +30,10 @@ namespace ui { const char *const menu_custom_ui::HIDE_STATUS[] = { - __("Show All"), - __("Hide Filters"), - __("Hide Info/Image"), - __("Hide Both") }; + N_("Show All"), + N_("Hide Filters"), + N_("Hide Info/Image"), + N_("Hide Both") }; //------------------------------------------------- // ctor @@ -43,30 +43,10 @@ menu_custom_ui::menu_custom_ui(mame_ui_manager &mui, render_container &container : menu(mui, container) , m_handler(std::move(handler)) , m_currlang(0) + , m_currsysnames(0) { - // load languages - file_enumerator path(mui.machine().options().language_path()); - const char *const lang = mui.machine().options().language(); - const osd::directory::entry *dirent; - std::string name; - while ((dirent = path.next())) - { - if (dirent->type == osd::directory::entry::entry_type::DIR && strcmp(dirent->name, ".") != 0 && strcmp(dirent->name, "..") != 0) - { - name = dirent->name; - auto i = strreplace(name, "_", " ("); - if (i > 0) - name.append(")"); - m_lang.emplace_back(std::move(name)); - } - } - std::sort( - m_lang.begin(), - m_lang.end(), - [] (const std::string &x, const std::string &y) { return 0 > core_stricmp(x.c_str(), y.c_str()); }); - const auto found = std::lower_bound(m_lang.begin(), m_lang.end(), lang, [] (std::string const &x, const char *y) { return 0 > core_stricmp(x.c_str(), y); }); - if ((m_lang.end() != found) && !core_stricmp(found->c_str(), lang)) - m_currlang = std::distance(m_lang.begin(), found); + find_languages(); + find_sysnames(); } //------------------------------------------------- @@ -76,11 +56,12 @@ menu_custom_ui::menu_custom_ui(mame_ui_manager &mui, render_container &container menu_custom_ui::~menu_custom_ui() { ui().options().set_value(OPTION_HIDE_PANELS, ui_globals::panels_status, OPTION_PRIORITY_CMDLINE); - if (!m_lang.empty()) - { - machine().options().set_value(OPTION_LANGUAGE, m_lang[m_currlang], OPTION_PRIORITY_CMDLINE); - load_translation(machine().options()); - } + + machine().options().set_value(OPTION_LANGUAGE, m_currlang ? m_languages[m_currlang] : "", OPTION_PRIORITY_CMDLINE); + load_translation(machine().options()); + + ui().options().set_value(OPTION_SYSTEM_NAMES, m_currsysnames ? m_sysnames[m_currsysnames] : "", OPTION_PRIORITY_CMDLINE); + ui_globals::reset = true; if (m_handler) @@ -96,7 +77,7 @@ void menu_custom_ui::handle() bool changed = false; // process the menu - const event *menu_event = process(0); + const event *menu_event = process(PROCESS_LR_REPEAT); if (menu_event != nullptr && menu_event->itemref != nullptr) { @@ -140,13 +121,16 @@ void menu_custom_ui::handle() if (menu_event->iptkey == IPT_UI_LEFT || menu_event->iptkey == IPT_UI_RIGHT) { changed = true; - (menu_event->iptkey == IPT_UI_RIGHT) ? m_currlang++ : m_currlang--; + if (menu_event->iptkey == IPT_UI_LEFT) + m_currlang = (m_currlang ? m_currlang : m_languages.size())- 1; + else if (++m_currlang >= m_languages.size()) + m_currlang = 0; } else if (menu_event->iptkey == IPT_UI_SELECT) { // copying list of language names - expensive menu::stack_push<menu_selector>( - ui(), container(), std::vector<std::string>(m_lang), m_currlang, + ui(), container(), std::vector<std::string>(m_languages), m_currlang, [this] (int selection) { m_currlang = selection; @@ -154,6 +138,27 @@ void menu_custom_ui::handle() }); } break; + case SYSNAMES_MENU: + if (menu_event->iptkey == IPT_UI_LEFT || menu_event->iptkey == IPT_UI_RIGHT) + { + changed = true; + if (menu_event->iptkey == IPT_UI_LEFT) + m_currsysnames = (m_currsysnames ? m_currsysnames : m_sysnames.size())- 1; + else if (++m_currsysnames >= m_sysnames.size()) + m_currsysnames = 0; + } + else if (menu_event->iptkey == IPT_UI_SELECT) + { + // copying list of file names - expensive + menu::stack_push<menu_selector>( + ui(), container(), std::vector<std::string>(m_sysnames), m_currsysnames, + [this] (int selection) + { + m_currsysnames = selection; + reset(reset_options::REMEMBER_REF); + }); + } + break; } } @@ -171,11 +176,11 @@ void menu_custom_ui::populate(float &customtop, float &custombottom) item_append(_("Fonts"), 0, (void *)(uintptr_t)FONT_MENU); item_append(_("Colors"), 0, (void *)(uintptr_t)COLORS_MENU); - if (!m_lang.empty()) - { - arrow_flags = get_arrow_flags<std::uint16_t>(0, m_lang.size() - 1, m_currlang); - item_append(_("Language"), m_lang[m_currlang], arrow_flags, (void *)(uintptr_t)LANGUAGE_MENU); - } + arrow_flags = get_arrow_flags<std::size_t>(0, m_languages.size() - 1, m_currlang); + item_append(_("Language"), m_languages[m_currlang], arrow_flags, (void *)(uintptr_t)LANGUAGE_MENU); + + arrow_flags = get_arrow_flags<std::size_t>(0, m_sysnames.size() - 1, m_currsysnames); + item_append(_("System Names"), m_sysnames[m_currsysnames], arrow_flags, (void *)(uintptr_t)SYSNAMES_MENU); arrow_flags = get_arrow_flags<uint16_t>(0, HIDE_BOTH, ui_globals::panels_status); item_append(_("Show side panels"), _(HIDE_STATUS[ui_globals::panels_status]), arrow_flags, (void *)(uintptr_t)HIDE_MENU); @@ -190,7 +195,7 @@ void menu_custom_ui::populate(float &customtop, float &custombottom) void menu_custom_ui::custom_render(void *selectedref, float top, float bottom, float origx1, float origy1, float origx2, float origy2) { - char const *const text[] = { _("Custom UI Settings") }; + char const *const text[] = { _("UI Customization Settings") }; draw_text_box( std::begin(text), std::end(text), origx1, origx2, origy1 - top, origy1 - ui().box_tb_border(), @@ -199,6 +204,94 @@ void menu_custom_ui::custom_render(void *selectedref, float top, float bottom, f } //------------------------------------------------- +// find UI translation files +//------------------------------------------------- + +void menu_custom_ui::find_languages() +{ + m_languages.emplace_back(_("[built-in]")); + + file_enumerator path(machine().options().language_path()); + osd::directory::entry const *dirent; + std::string name; + while ((dirent = path.next())) + { + if (dirent->type == osd::directory::entry::entry_type::DIR && strcmp(dirent->name, ".") != 0 && strcmp(dirent->name, "..") != 0) + { + name = dirent->name; + auto i = strreplace(name, "_", " ("); + if (i > 0) + name.append(")"); + m_languages.emplace_back(std::move(name)); + } + } + std::sort( + std::next(m_languages.begin()), + m_languages.end(), + [] (std::string const &x, std::string const &y) { return 0 > core_stricmp(x.c_str(), y.c_str()); }); + + char const *const lang = machine().options().language(); + if (*lang) + { + auto const found = std::lower_bound( + std::next(m_languages.begin()), + m_languages.end(), + lang, + [] (std::string const &x, char const *y) { return 0 > core_stricmp(x.c_str(), y); }); + if ((m_languages.end() != found) && !core_stricmp(found->c_str(), lang)) + m_currlang = std::distance(m_languages.begin(), found); + } + else + { + m_currlang = 0; + } +} + +//------------------------------------------------- +// find translated system names +//------------------------------------------------- + +void menu_custom_ui::find_sysnames() +{ + m_sysnames.emplace_back(_("[built-in]")); + + path_iterator search(ui().options().history_path()); + std::string path; + while (search.next(path)) + { + file_enumerator dir(path); + osd::directory::entry const *dirent; + while ((dirent = dir.next())) + { + if (dirent->type == osd::directory::entry::entry_type::FILE && core_filename_ends_with(dirent->name, ".lst")) + m_sysnames.emplace_back(dirent->name); + } + } + std::sort( + m_sysnames.begin(), + m_sysnames.end(), + [] (std::string const &x, std::string const &y) { return 0 > core_stricmp(x.c_str(), y.c_str()); }); + + char const *const names = ui().options().system_names(); + if (*names) + { + auto const found = std::lower_bound( + std::next(m_sysnames.begin()), + m_sysnames.end(), + names, + [] (std::string const &x, char const *y) { return 0 > core_stricmp(x.c_str(), y); }); + m_currsysnames = std::distance(m_sysnames.begin(), found); + if ((m_sysnames.end() == found) || core_stricmp(found->c_str(), names)) + m_sysnames.emplace(found, names); + } + else + { + m_currsysnames = 0; + } +} + + +//------------------------------------------------- // ctor //------------------------------------------------- @@ -781,34 +874,34 @@ void menu_rgb_ui::populate(float &customtop, float &custombottom) if (m_lock_ref != RGB_ALPHA) { arrow_flags = get_arrow_flags<uint8_t>(0, 255, m_color->a()); - item_append(_("Alpha"), string_format("%3u", m_color->a()), arrow_flags, (void *)(uintptr_t)RGB_ALPHA); + item_append(_("color-channel", "Alpha"), string_format("%3u", m_color->a()), arrow_flags, (void *)(uintptr_t)RGB_ALPHA); } else - item_append(_("Alpha"), s_text, 0, (void *)(uintptr_t)RGB_ALPHA); + item_append(_("color-channel", "Alpha"), s_text, 0, (void *)(uintptr_t)RGB_ALPHA); if (m_lock_ref != RGB_RED) { arrow_flags = get_arrow_flags<uint8_t>(0, 255, m_color->r()); - item_append(_("Red"), string_format("%3u", m_color->r()), arrow_flags, (void *)(uintptr_t)RGB_RED); + item_append(_("color-channel", "Red"), string_format("%3u", m_color->r()), arrow_flags, (void *)(uintptr_t)RGB_RED); } else - item_append(_("Red"), s_text, 0, (void *)(uintptr_t)RGB_RED); + item_append(_("color-channel", "Red"), s_text, 0, (void *)(uintptr_t)RGB_RED); if (m_lock_ref != RGB_GREEN) { arrow_flags = get_arrow_flags<uint8_t>(0, 255, m_color->g()); - item_append(_("Green"), string_format("%3u", m_color->g()), arrow_flags, (void *)(uintptr_t)RGB_GREEN); + item_append(_("color-channel", "Green"), string_format("%3u", m_color->g()), arrow_flags, (void *)(uintptr_t)RGB_GREEN); } else - item_append(_("Green"), s_text, 0, (void *)(uintptr_t)RGB_GREEN); + item_append(_("color-channel", "Green"), s_text, 0, (void *)(uintptr_t)RGB_GREEN); if (m_lock_ref != RGB_BLUE) { arrow_flags = get_arrow_flags<uint8_t>(0, 255, m_color->b()); - item_append(_("Blue"), string_format("%3u", m_color->b()), arrow_flags, (void *)(uintptr_t)RGB_BLUE); + item_append(_("color-channel", "Blue"), string_format("%3u", m_color->b()), arrow_flags, (void *)(uintptr_t)RGB_BLUE); } else - item_append(_("Blue"), s_text, 0, (void *)(uintptr_t)RGB_BLUE); + item_append(_("color-channel", "Blue"), s_text, 0, (void *)(uintptr_t)RGB_BLUE); item_append(menu_item_type::SEPARATOR); item_append(_("Choose from palette"), 0, (void *)(uintptr_t)PALETTE_CHOOSE); @@ -931,16 +1024,16 @@ void menu_rgb_ui::inkey_special(const event *menu_event) } std::pair<const char *, const char *> const menu_palette_sel::s_palette[] = { - { __("White"), "FFFFFFFF" }, - { __("Silver"), "FFC0C0C0" }, - { __("Gray"), "FF808080" }, - { __("Black"), "FF000000" }, - { __("Red"), "FFFF0000" }, - { __("Orange"), "FFFFA500" }, - { __("Yellow"), "FFFFFF00" }, - { __("Green"), "FF00FF00" }, - { __("Blue"), "FF0000FF" }, - { __("Violet"), "FF8F00FF" } + { N_p("color-preset", "White"), "FFFFFFFF" }, + { N_p("color-preset", "Silver"), "FFC0C0C0" }, + { N_p("color-preset", "Gray"), "FF808080" }, + { N_p("color-preset", "Black"), "FF000000" }, + { N_p("color-preset", "Red"), "FFFF0000" }, + { N_p("color-preset", "Orange"), "FFFFA500" }, + { N_p("color-preset", "Yellow"), "FFFFFF00" }, + { N_p("color-preset", "Green"), "FF00FF00" }, + { N_p("color-preset", "Blue"), "FF0000FF" }, + { N_p("color-preset", "Violet"), "FF8F00FF" } }; //------------------------------------------------- @@ -986,7 +1079,7 @@ void menu_palette_sel::handle() void menu_palette_sel::populate(float &customtop, float &custombottom) { for (unsigned x = 0; x < std::size(s_palette); ++x) - item_append(_(s_palette[x].first), s_palette[x].second, FLAG_COLOR_BOX, (void *)(uintptr_t)(x + 1)); + item_append(_("color-preset", s_palette[x].first), s_palette[x].second, FLAG_COLOR_BOX, (void *)(uintptr_t)(x + 1)); item_append(menu_item_type::SEPARATOR); } diff --git a/src/frontend/mame/ui/custui.h b/src/frontend/mame/ui/custui.h index 2da5cfd132b..33e8149ffdc 100644 --- a/src/frontend/mame/ui/custui.h +++ b/src/frontend/mame/ui/custui.h @@ -37,6 +37,7 @@ private: enum { LANGUAGE_MENU = 1, + SYSNAMES_MENU, FONT_MENU, COLORS_MENU, HIDE_MENU @@ -45,11 +46,16 @@ private: virtual void populate(float &customtop, float &custombottom) override; virtual void handle() override; + void find_languages(); + void find_sysnames(); + static const char *const HIDE_STATUS[]; std::function<void ()> m_handler; - std::vector<std::string> m_lang; - std::uint16_t m_currlang; + std::vector<std::string> m_languages; + std::vector<std::string> m_sysnames; + std::size_t m_currlang; + std::size_t m_currsysnames; }; //------------------------------------------------- diff --git a/src/frontend/mame/ui/datmenu.cpp b/src/frontend/mame/ui/datmenu.cpp index b772273d61a..6dabbc09223 100644 --- a/src/frontend/mame/ui/datmenu.cpp +++ b/src/frontend/mame/ui/datmenu.cpp @@ -77,10 +77,10 @@ menu_dats_view::menu_dats_view(mame_ui_manager &mui, render_container &container , m_issoft(true) { - if (swinfo != nullptr && !swinfo->usage.empty()) - m_items_list.emplace_back(_("Software Usage"), 0, ""); + if (swinfo != nullptr && !swinfo->infotext.empty()) + m_items_list.emplace_back(_("Software List Info"), 0, ""); std::vector<std::string> lua_list; - if(mame_machine_manager::instance()->lua()->call_plugin("data_list", std::string(m_short).append(1, ',').append(m_list).c_str(), lua_list)) + if (mame_machine_manager::instance()->lua()->call_plugin("data_list", std::string(m_short).append(1, ',').append(m_list).c_str(), lua_list)) { int count = 1; for(std::string &item : lua_list) @@ -417,7 +417,7 @@ void menu_dats_view::get_data_sw() std::vector<int> xend; std::string buffer; if (m_items_list[m_actual].option == 0) - buffer = m_swinfo->usage; + buffer = m_swinfo->infotext; else mame_machine_manager::instance()->lua()->call_plugin("data", m_items_list[m_actual].option - 1, buffer); diff --git a/src/frontend/mame/ui/dirmenu.cpp b/src/frontend/mame/ui/dirmenu.cpp index 9d6fd462e74..85ca2fc085b 100644 --- a/src/frontend/mame/ui/dirmenu.cpp +++ b/src/frontend/mame/ui/dirmenu.cpp @@ -34,35 +34,37 @@ struct folders_entry static const folders_entry s_folders[] = { - { __("ROMs"), OPTION_MEDIAPATH, ADDING }, - { __("Software Media"), OPTION_SWPATH, CHANGE }, - { __("UI"), OPTION_UI_PATH, CHANGE }, - { __("Language"), OPTION_LANGUAGEPATH, CHANGE }, - { __("Samples"), OPTION_SAMPLEPATH, ADDING }, - { __("DATs"), OPTION_HISTORY_PATH, ADDING }, - { __("INIs"), OPTION_INIPATH, ADDING }, - { __("Category INIs"), OPTION_CATEGORYINI_PATH, CHANGE }, - { __("Icons"), OPTION_ICONS_PATH, ADDING }, - { __("Cheats"), OPTION_CHEATPATH, ADDING }, - { __("Snapshots"), OPTION_SNAPSHOT_DIRECTORY, ADDING }, - { __("Cabinets"), OPTION_CABINETS_PATH, ADDING }, - { __("Flyers"), OPTION_FLYERS_PATH, ADDING }, - { __("Titles"), OPTION_TITLES_PATH, ADDING }, - { __("Ends"), OPTION_ENDS_PATH, ADDING }, - { __("PCBs"), OPTION_PCBS_PATH, ADDING }, - { __("Marquees"), OPTION_MARQUEES_PATH, ADDING }, - { __("Controls Panels"), OPTION_CPANELS_PATH, ADDING }, - { __("Crosshairs"), OPTION_CROSSHAIRPATH, ADDING }, - { __("Artworks"), OPTION_ARTPATH, ADDING }, - { __("Bosses"), OPTION_BOSSES_PATH, ADDING }, - { __("Artworks Preview"), OPTION_ARTPREV_PATH, ADDING }, - { __("Select"), OPTION_SELECT_PATH, ADDING }, - { __("GameOver"), OPTION_GAMEOVER_PATH, ADDING }, - { __("HowTo"), OPTION_HOWTO_PATH, ADDING }, - { __("Logos"), OPTION_LOGOS_PATH, ADDING }, - { __("Scores"), OPTION_SCORES_PATH, ADDING }, - { __("Versus"), OPTION_VERSUS_PATH, ADDING }, - { __("Covers"), OPTION_COVER_PATH, ADDING } + { N_p("path-option", "ROMs"), OPTION_MEDIAPATH, ADDING }, + { N_p("path-option", "Software Media"), OPTION_SWPATH, CHANGE }, + { N_p("path-option", "Sound Samples"), OPTION_SAMPLEPATH, ADDING }, + { N_p("path-option", "Artwork"), OPTION_ARTPATH, ADDING }, + { N_p("path-option", "Crosshairs"), OPTION_CROSSHAIRPATH, ADDING }, + { N_p("path-option", "Cheat Files"), OPTION_CHEATPATH, ADDING }, + { N_p("path-option", "Plugins"), OPTION_PLUGINSPATH, ADDING }, + { N_p("path-option", "UI Translations"), OPTION_LANGUAGEPATH, CHANGE }, + { N_p("path-option", "INIs"), OPTION_INIPATH, ADDING }, + { N_p("path-option", "UI Settings"), OPTION_UI_PATH, CHANGE }, + { N_p("path-option", "Plugin Data"), OPTION_PLUGINDATAPATH, CHANGE }, + { N_p("path-option", "DATs"), OPTION_HISTORY_PATH, ADDING }, + { N_p("path-option", "Category INIs"), OPTION_CATEGORYINI_PATH, CHANGE }, + { N_p("path-option", "Snapshots"), OPTION_SNAPSHOT_DIRECTORY, ADDING }, + { N_p("path-option", "Icons"), OPTION_ICONS_PATH, ADDING }, + { N_p("path-option", "Control Panels"), OPTION_CPANELS_PATH, ADDING }, + { N_p("path-option", "Cabinets"), OPTION_CABINETS_PATH, ADDING }, + { N_p("path-option", "Marquees"), OPTION_MARQUEES_PATH, ADDING }, + { N_p("path-option", "PCBs"), OPTION_PCBS_PATH, ADDING }, + { N_p("path-option", "Flyers"), OPTION_FLYERS_PATH, ADDING }, + { N_p("path-option", "Title Screens"), OPTION_TITLES_PATH, ADDING }, + { N_p("path-option", "Game Endings"), OPTION_ENDS_PATH, ADDING }, + { N_p("path-option", "Bosses"), OPTION_BOSSES_PATH, ADDING }, + { N_p("path-option", "Artwork Previews"), OPTION_ARTPREV_PATH, ADDING }, + { N_p("path-option", "Select"), OPTION_SELECT_PATH, ADDING }, + { N_p("path-option", "Game Over Screens"), OPTION_GAMEOVER_PATH, ADDING }, + { N_p("path-option", "HowTo"), OPTION_HOWTO_PATH, ADDING }, + { N_p("path-option", "Logos"), OPTION_LOGOS_PATH, ADDING }, + { N_p("path-option", "Scores"), OPTION_SCORES_PATH, ADDING }, + { N_p("path-option", "Versus"), OPTION_VERSUS_PATH, ADDING }, + { N_p("path-option", "Covers"), OPTION_COVER_PATH, ADDING } }; @@ -103,7 +105,7 @@ void menu_directory::handle() void menu_directory::populate(float &customtop, float &custombottom) { for (auto & elem : s_folders) - item_append(_(elem.name), 0, (void *)(uintptr_t)elem.action); + item_append(_("path-option", elem.name), 0, (void *)(uintptr_t)elem.action); item_append(menu_item_type::SEPARATOR); customtop = ui().get_line_height() + 3.0f * ui().box_tb_border(); @@ -166,7 +168,7 @@ void menu_display_actual::handle() void menu_display_actual::populate(float &customtop, float &custombottom) { - m_heading[0] = string_format(_("Current %1$s Folders"), _(s_folders[m_ref].name)); + m_heading[0] = string_format(_("Current %1$s Folders"), _("path-option", s_folders[m_ref].name)); if (ui().options().exists(s_folders[m_ref].option)) m_searchpath.assign(ui().options().value(s_folders[m_ref].option)); else @@ -417,7 +419,7 @@ void menu_add_change_folder::custom_render(void *selectedref, float top, float b std::string const toptext[] = { util::string_format( m_change ? _("Change %1$s Folder - Search: %2$s_") : _("Add %1$s Folder - Search: %2$s_"), - _(s_folders[m_ref].name), + _("path-option", s_folders[m_ref].name), m_search), m_current_path }; draw_text_box( @@ -511,7 +513,7 @@ void menu_remove_folder::populate(float &customtop, float &custombottom) void menu_remove_folder::custom_render(void *selectedref, float top, float bottom, float origx1, float origy1, float origx2, float origy2) { - std::string const toptext[] = {string_format(_("Remove %1$s Folder"), _(s_folders[m_ref].name)) }; + std::string const toptext[] = {string_format(_("Remove %1$s Folder"), _("path-option", s_folders[m_ref].name)) }; draw_text_box( std::begin(toptext), std::end(toptext), origx1, origx2, origy1 - top, origy1 - ui().box_tb_border(), diff --git a/src/frontend/mame/ui/info.cpp b/src/frontend/mame/ui/info.cpp index 1c9e649dce7..e3f557ed54e 100644 --- a/src/frontend/mame/ui/info.cpp +++ b/src/frontend/mame/ui/info.cpp @@ -28,27 +28,27 @@ constexpr machine_flags::type MACHINE_WARNINGS = machine_flags::NO_COCKTAIL | m constexpr machine_flags::type MACHINE_BTANB = machine_flags::NO_SOUND_HW | machine_flags::IS_INCOMPLETE; constexpr std::pair<device_t::feature_type, char const *> FEATURE_NAMES[] = { - { device_t::feature::PROTECTION, __("protection") }, - { device_t::feature::TIMING, __("timing") }, - { device_t::feature::GRAPHICS, __("graphics") }, - { device_t::feature::PALETTE, __("color palette") }, - { device_t::feature::SOUND, __("sound") }, - { device_t::feature::CAPTURE, __("capture hardware") }, - { device_t::feature::CAMERA, __("camera") }, - { device_t::feature::MICROPHONE, __("microphone") }, - { device_t::feature::CONTROLS, __("controls") }, - { device_t::feature::KEYBOARD, __("keyboard") }, - { device_t::feature::MOUSE, __("mouse") }, - { device_t::feature::MEDIA, __("media") }, - { device_t::feature::DISK, __("disk") }, - { device_t::feature::PRINTER, __("printer") }, - { device_t::feature::TAPE, __("magnetic tape") }, - { device_t::feature::PUNCH, __("punch tape") }, - { device_t::feature::DRUM, __("magnetic drum") }, - { device_t::feature::ROM, __("solid state storage") }, - { device_t::feature::COMMS, __("communications") }, - { device_t::feature::LAN, __("LAN") }, - { device_t::feature::WAN, __("WAN") } }; + { device_t::feature::PROTECTION, N_p("emulation-feature", "protection") }, + { device_t::feature::TIMING, N_p("emulation-feature", "timing") }, + { device_t::feature::GRAPHICS, N_p("emulation-feature", "graphics") }, + { device_t::feature::PALETTE, N_p("emulation-feature", "color palette") }, + { device_t::feature::SOUND, N_p("emulation-feature", "sound") }, + { device_t::feature::CAPTURE, N_p("emulation-feature", "capture hardware") }, + { device_t::feature::CAMERA, N_p("emulation-feature", "camera") }, + { device_t::feature::MICROPHONE, N_p("emulation-feature", "microphone") }, + { device_t::feature::CONTROLS, N_p("emulation-feature", "controls") }, + { device_t::feature::KEYBOARD, N_p("emulation-feature", "keyboard") }, + { device_t::feature::MOUSE, N_p("emulation-feature", "mouse") }, + { device_t::feature::MEDIA, N_p("emulation-feature", "media") }, + { device_t::feature::DISK, N_p("emulation-feature", "disk") }, + { device_t::feature::PRINTER, N_p("emulation-feature", "printer") }, + { device_t::feature::TAPE, N_p("emulation-feature", "magnetic tape") }, + { device_t::feature::PUNCH, N_p("emulation-feature", "punch tape") }, + { device_t::feature::DRUM, N_p("emulation-feature", "magnetic drum") }, + { device_t::feature::ROM, N_p("emulation-feature", "solid state storage") }, + { device_t::feature::COMMS, N_p("emulation-feature", "communications") }, + { device_t::feature::LAN, N_p("emulation-feature", "LAN") }, + { device_t::feature::WAN, N_p("emulation-feature", "WAN") } }; } // anonymous namespace @@ -253,7 +253,7 @@ std::string machine_info::warnings_string() const { if (unemulated_features() & feature.first) { - util::stream_format(buf, first ? _("%s") : _(", %s"), _(feature.second)); + util::stream_format(buf, first ? _("%s") : _(", %s"), _("emulation-feature", feature.second)); first = false; } } @@ -269,7 +269,7 @@ std::string machine_info::warnings_string() const { if (imperfect_features() & feature.first) { - util::stream_format(buf, first ? _("%s") : _(", %s"), _(feature.second)); + util::stream_format(buf, first ? _("%s") : _(", %s"), _("emulation-feature", feature.second)); first = false; } } diff --git a/src/frontend/mame/ui/inifile.cpp b/src/frontend/mame/ui/inifile.cpp index 000ea922a4a..317df1c637a 100644 --- a/src/frontend/mame/ui/inifile.cpp +++ b/src/frontend/mame/ui/inifile.cpp @@ -219,48 +219,48 @@ favorite_manager::favorite_manager(ui_options &options) if (!file.open(FAVORITE_FILENAME)) { char readbuf[1024]; - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); while (readbuf[0] == '[') - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); - while (file.gets(readbuf, 1024)) + while (file.gets(readbuf, std::size(readbuf))) { ui_software_info tmpmatches; tmpmatches.shortname = chartrimcarriage(readbuf); - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); tmpmatches.longname = chartrimcarriage(readbuf); - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); tmpmatches.parentname = chartrimcarriage(readbuf); - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); tmpmatches.year = chartrimcarriage(readbuf); - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); tmpmatches.publisher = chartrimcarriage(readbuf); - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); tmpmatches.supported = software_support(atoi(readbuf)); - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); tmpmatches.part = chartrimcarriage(readbuf); - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); chartrimcarriage(readbuf); auto dx = driver_list::find(readbuf); if (0 > dx) continue; tmpmatches.driver = &driver_list::driver(dx); - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); tmpmatches.listname = chartrimcarriage(readbuf); - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); tmpmatches.interface = chartrimcarriage(readbuf); - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); tmpmatches.instance = chartrimcarriage(readbuf); - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); tmpmatches.startempty = atoi(readbuf); - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); tmpmatches.parentlongname = chartrimcarriage(readbuf); - file.gets(readbuf, 1024); - tmpmatches.usage = chartrimcarriage(readbuf); - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); + //tmpmatches.usage = chartrimcarriage(readbuf); TODO: recover multi-line info + file.gets(readbuf, std::size(readbuf)); tmpmatches.devicetype = chartrimcarriage(readbuf); - file.gets(readbuf, 1024); + file.gets(readbuf, std::size(readbuf)); tmpmatches.available = atoi(readbuf); m_favorites.emplace(std::move(tmpmatches)); } @@ -292,25 +292,18 @@ void favorite_manager::add_favorite(running_machine &machine) if (imagedev) { // creating this is fairly expensive, but we'll assume this usually succeeds - ui_software_info info; software_part const *const part(imagedev->part_entry()); assert(software); assert(part); - - // start with simple stuff that can just be copied - info.shortname = software->shortname(); - info.longname = software->longname(); - info.parentname = software->parentname(); - info.year = software->year(); - info.publisher = software->publisher(); - info.supported = software->supported(); - info.part = part->name(); - info.driver = &driver; - info.listname = imagedev->software_list_name(); - info.interface = part->interface(); - info.instance = imagedev->instance_name(); - info.startempty = 0; - info.devicetype = strensure(imagedev->image_type_name()); + ui_software_info info( + *software, + *part, + driver, + imagedev->software_list_name(), + imagedev->instance_name(), + strensure(imagedev->image_type_name())); + + // assume it's available if it's mounted info.available = true; // look up the parent in the list if necessary (eugh, O(n) walk) @@ -328,16 +321,6 @@ void favorite_manager::add_favorite(running_machine &machine) } } - // fill in with the first usage entry we find - for (feature_list_item const &feature : software->other_info()) - { - if (feature.name() == "usage") - { - info.usage = feature.value(); - break; - } - } - // hooray for move semantics! add_impl(std::move(info)); } @@ -567,7 +550,7 @@ void favorite_manager::save_favorites() buf << info.instance << '\n'; util::stream_format(buf, "%d\n", info.startempty); buf << info.parentlongname << '\n'; - buf << info.usage << '\n'; + buf << '\n'; //buf << info.usage << '\n'; TODO: store multi-line info in a recoverable format buf << info.devicetype << '\n'; util::stream_format(buf, "%d\n", info.available); diff --git a/src/frontend/mame/ui/menu.cpp b/src/frontend/mame/ui/menu.cpp index 923a0fae6df..b785deea72b 100644 --- a/src/frontend/mame/ui/menu.cpp +++ b/src/frontend/mame/ui/menu.cpp @@ -78,7 +78,6 @@ bool menu::exclusive_input_pressed(int &iptkey, int key, int repeat) menu::global_state::global_state(running_machine &machine, ui_options const &options) : widgets_manager(machine) , m_machine(machine) - , m_cleanup_callbacks() , m_bgrnd_bitmap() , m_bgrnd_texture(nullptr, machine.render()) , m_stack() @@ -120,15 +119,6 @@ menu::global_state::~global_state() stack_reset(); clear_free_list(); - - for (auto const &callback : m_cleanup_callbacks) - callback(m_machine); -} - - -void menu::global_state::add_cleanup_callback(cleanup_callback &&callback) -{ - m_cleanup_callbacks.emplace_back(std::move(callback)); } diff --git a/src/frontend/mame/ui/menu.h b/src/frontend/mame/ui/menu.h index bb99e84f0ad..2d8d5e9173c 100644 --- a/src/frontend/mame/ui/menu.h +++ b/src/frontend/mame/ui/menu.h @@ -132,7 +132,6 @@ private: void draw_text_box(); protected: - using cleanup_callback = std::function<void(running_machine &)>; using bitmap_ptr = widgets_manager::bitmap_ptr; using texture_ptr = widgets_manager::texture_ptr; @@ -181,8 +180,6 @@ protected: void stack_reset() { m_global_state->stack_reset(); } bool stack_has_special_main_menu() const { return m_global_state->stack_has_special_main_menu(); } - void add_cleanup_callback(cleanup_callback &&callback) { m_global_state->add_cleanup_callback(std::move(callback)); } - // process a menu, drawing it and returning any interesting events const event *process(uint32_t flags, float x0 = 0.0f, float y0 = 0.0f); void process_parent() { m_parent->process(PROCESS_NOINPUT); } @@ -336,8 +333,6 @@ private: global_state(global_state &&) = delete; ~global_state(); - void add_cleanup_callback(cleanup_callback &&callback); - bitmap_argb32 *bgrnd_bitmap() { return m_bgrnd_bitmap.get(); } render_texture *bgrnd_texture() { return m_bgrnd_texture.get(); } @@ -351,10 +346,7 @@ private: bool stack_has_special_main_menu() const; private: - using cleanup_callback_vector = std::vector<cleanup_callback>; - running_machine &m_machine; - cleanup_callback_vector m_cleanup_callbacks; bitmap_ptr m_bgrnd_bitmap; texture_ptr m_bgrnd_texture; diff --git a/src/frontend/mame/ui/miscmenu.cpp b/src/frontend/mame/ui/miscmenu.cpp index da7989e6e3b..f053d2572f4 100644 --- a/src/frontend/mame/ui/miscmenu.cpp +++ b/src/frontend/mame/ui/miscmenu.cpp @@ -15,6 +15,7 @@ #include "ui/selector.h" #include "ui/submenu.h" #include "ui/ui.h" +#include "ui/utils.h" #include "infoxml.h" #include "mame.h" @@ -702,11 +703,33 @@ void menu_export::populate(float &customtop, float &custombottom) menu_machine_configure::menu_machine_configure( mame_ui_manager &mui, render_container &container, + ui_system_info const &info, + std::function<void (bool, bool)> &&handler, + float x0, float y0) + : menu_machine_configure(mui, container, info.description.c_str(), *info.driver, std::move(handler), x0, y0) +{ +} + +menu_machine_configure::menu_machine_configure( + mame_ui_manager &mui, + render_container &container, + game_driver const &drv, + std::function<void (bool, bool)> &&handler, + float x0, float y0) + : menu_machine_configure(mui, container, drv.type.fullname(), drv, std::move(handler), x0, y0) +{ +} + +menu_machine_configure::menu_machine_configure( + mame_ui_manager &mui, + render_container &container, + char const *description, game_driver const &drv, std::function<void (bool, bool)> &&handler, float x0, float y0) : menu(mui, container) , m_handler(std::move(handler)) + , m_description(description) , m_drv(drv) , m_x0(x0) , m_y0(y0) @@ -835,7 +858,7 @@ void menu_machine_configure::populate(float &customtop, float &custombottom) void menu_machine_configure::custom_render(void *selectedref, float top, float bottom, float origx1, float origy1, float origx2, float origy2) { - char const *const text[] = { _("Configure Machine:"), m_drv.type.fullname() }; + char const *const text[] = { _("Configure Machine:"), m_description }; draw_text_box( std::begin(text), std::end(text), origx1, origx2, origy1 - top, origy1 - ui().box_tb_border(), diff --git a/src/frontend/mame/ui/miscmenu.h b/src/frontend/mame/ui/miscmenu.h index c8d833ae4e2..5fdf7fb8a8e 100644 --- a/src/frontend/mame/ui/miscmenu.h +++ b/src/frontend/mame/ui/miscmenu.h @@ -21,6 +21,9 @@ #include <vector> +struct ui_system_info; + + namespace ui { class menu_network_devices : public menu @@ -130,6 +133,12 @@ public: menu_machine_configure( mame_ui_manager &mui, render_container &container, + ui_system_info const &info, + std::function<void (bool, bool)> &&handler = nullptr, + float x0 = 0.0f, float y0 = 0.0f); + menu_machine_configure( + mame_ui_manager &mui, + render_container &container, game_driver const &drv, std::function<void (bool, bool)> &&handler = nullptr, float x0 = 0.0f, float y0 = 0.0f); @@ -153,12 +162,21 @@ private: LAST = ADVANCED }; + menu_machine_configure( + mame_ui_manager &mui, + render_container &container, + char const *description, + game_driver const &drv, + std::function<void (bool, bool)> &&handler, + float x0, float y0); + virtual void populate(float &customtop, float &custombottom) override; virtual void handle() override; void setup_bios(); std::function<void (bool, bool)> const m_handler; + char const *const m_description; game_driver const &m_drv; emu_options m_opts; float const m_x0; diff --git a/src/frontend/mame/ui/moptions.cpp b/src/frontend/mame/ui/moptions.cpp index cf1d521ef3b..375bbddf16a 100644 --- a/src/frontend/mame/ui/moptions.cpp +++ b/src/frontend/mame/ui/moptions.cpp @@ -21,7 +21,7 @@ const options_entry ui_options::s_option_entries[] = { // search path options { nullptr, nullptr, OPTION_HEADER, "UI SEARCH PATH OPTIONS" }, - { OPTION_HISTORY_PATH, "history;dats;.", OPTION_STRING, "path to history files" }, + { OPTION_HISTORY_PATH, "history;dats;.", OPTION_STRING, "path to system/software info files" }, { OPTION_CATEGORYINI_PATH, "folders", OPTION_STRING, "path to category ini files" }, { OPTION_CABINETS_PATH, "cabinets;cabdevs", OPTION_STRING, "path to cabinets / devices image" }, { OPTION_CPANELS_PATH, "cpanel", OPTION_STRING, "path to control panel image" }, @@ -44,6 +44,7 @@ const options_entry ui_options::s_option_entries[] = // misc options { nullptr, nullptr, OPTION_HEADER, "UI MISC OPTIONS" }, + { OPTION_SYSTEM_NAMES, "", OPTION_STRING, "translated system names file" }, { OPTION_SKIP_WARNINGS, "0", OPTION_BOOLEAN, "display fewer repeated warnings about imperfect emulation" }, { OPTION_REMEMBER_LAST, "1", OPTION_BOOLEAN, "initially select last used system in main menu" }, { OPTION_ENLARGE_SNAPS, "1", OPTION_BOOLEAN, "enlarge artwork (snapshot, title, etc.) in right panel (keeping aspect ratio)" }, diff --git a/src/frontend/mame/ui/moptions.h b/src/frontend/mame/ui/moptions.h index a345972bdc0..4b228aad974 100644 --- a/src/frontend/mame/ui/moptions.h +++ b/src/frontend/mame/ui/moptions.h @@ -38,6 +38,7 @@ #define OPTION_UI_PATH "ui_path" // core misc options +#define OPTION_SYSTEM_NAMES "system_names" #define OPTION_SKIP_WARNINGS "skip_warnings" #define OPTION_REMEMBER_LAST "remember_last" #define OPTION_ENLARGE_SNAPS "enlarge_snaps" @@ -104,6 +105,7 @@ public: const char *ui_path() const { return value(OPTION_UI_PATH); } // Misc options + const char *system_names() const { return value(OPTION_SYSTEM_NAMES); } bool skip_warnings() const { return bool_value(OPTION_SKIP_WARNINGS); } bool remember_last() const { return bool_value(OPTION_REMEMBER_LAST); } bool enlarge_snaps() const { return bool_value(OPTION_ENLARGE_SNAPS); } diff --git a/src/frontend/mame/ui/selgame.cpp b/src/frontend/mame/ui/selgame.cpp index 7582c90e0d8..89892664fc0 100644 --- a/src/frontend/mame/ui/selgame.cpp +++ b/src/frontend/mame/ui/selgame.cpp @@ -37,8 +37,10 @@ #include <condition_variable> #include <cstring> #include <iterator> +#include <locale> #include <memory> #include <mutex> +#include <string_view> #include <thread> @@ -57,13 +59,15 @@ class menu_select_game::persistent_data public: enum available : unsigned { - AVAIL_NONE = 0U, - AVAIL_SORTED_LIST = 1U << 0, - AVAIL_BIOS_COUNT = 1U << 1, - AVAIL_UCS_SHORTNAME = 1U << 2, - AVAIL_UCS_DESCRIPTION = 1U << 3, - AVAIL_UCS_MANUF_DESC = 1U << 4, - AVAIL_FILTER_DATA = 1U << 5 + AVAIL_NONE = 0U, + AVAIL_SORTED_LIST = 1U << 0, + AVAIL_BIOS_COUNT = 1U << 1, + AVAIL_UCS_SHORTNAME = 1U << 2, + AVAIL_UCS_DESCRIPTION = 1U << 3, + AVAIL_UCS_MANUF_DESC = 1U << 4, + AVAIL_UCS_DFLT_DESC = 1U << 5, + AVAIL_UCS_MANUF_DFLT_DESC = 1U << 6, + AVAIL_FILTER_DATA = 1U << 7 }; ~persistent_data() @@ -72,10 +76,31 @@ public: m_thread->join(); } - void cache_data() + void cache_data(ui_options const &options) { std::unique_lock<std::mutex> lock(m_mutex); - do_start_caching(); + if (!m_started) + { + m_started = true; + m_thread = std::make_unique<std::thread>( + [this, datpath = std::string(options.history_path()), titles = std::string(options.system_names())] + { + do_cache_data(datpath, titles); + }); + } + } + + void reset_cache() + { + if (m_thread) + m_thread->join(); + std::unique_lock<std::mutex> lock(m_mutex); + m_thread.reset(); + m_started = false; + m_available = AVAIL_NONE; + m_sorted_list.clear(); + m_filter_data = machine_filter_data(); + m_bios_count = 0U; } bool is_available(available desired) @@ -87,8 +112,8 @@ public: { if (!is_available(desired)) { + assert(m_started); std::unique_lock<std::mutex> lock(m_mutex); - do_start_caching(); m_condition.wait(lock, [this, desired] () { return is_available(desired); }); } } @@ -138,42 +163,86 @@ private: m_condition.notify_all(); } - void do_start_caching() + void do_cache_data(std::string const &datpath, std::string const &titles) { - if (!m_started) - { - m_started = true; - m_thread = std::make_unique<std::thread>([this] { do_cache_data(); }); - } - } + // try to open the titles file for optimisation reasons + emu_file titles_file(datpath, OPEN_FLAG_READ); + bool const try_titles(!titles.empty() && !titles_file.open(titles)); - void do_cache_data() - { - // generate full list - m_sorted_list.reserve(driver_list::total()); - std::unordered_set<std::string> manufacturers, years; - for (int x = 0; x < driver_list::total(); ++x) - { - game_driver const &driver(driver_list::driver(x)); - if (&driver != &GAME_NAME(___empty)) - { - if (driver.flags & machine_flags::IS_BIOS_ROOT) - ++m_bios_count; - - m_sorted_list.emplace_back(driver, x, false); - m_filter_data.add_manufacturer(driver.manufacturer); - m_filter_data.add_year(driver.year); - } - } + // generate full list - initially ordered by shortname + populate_list(!try_titles); // notify that BIOS count is valie notify_available(AVAIL_BIOS_COUNT); + // try to load localised descriptions + if (try_titles) + load_titles(titles_file); + + // populate parent descriptions while still ordered by shortname + populate_parents(); + // sort drivers and notify + std::collate<wchar_t> const &coll = std::use_facet<std::collate<wchar_t>>(std::locale()); + auto const compare_names = + [&coll] (std::string const &x, std::string const &y) -> bool + { + std::wstring const wx = wstring_from_utf8(x); + std::wstring const wy = wstring_from_utf8(y); + return 0 > coll.compare(wx.data(), wx.data() + wx.size(), wy.data(), wy.data() + wy.size()); + }; std::stable_sort( m_sorted_list.begin(), m_sorted_list.end(), - [] (ui_system_info const &lhs, ui_system_info const &rhs) { return sorted_game_list(lhs.driver, rhs.driver); }); + [&compare_names] (ui_system_info const &lhs, ui_system_info const &rhs) + { + game_driver const &x(*lhs.driver); + game_driver const &y(*rhs.driver); + + bool clonex = (x.parent[0] != '0') || x.parent[1]; + int cx = -1; + if (clonex) + { + cx = driver_list::find(x.parent); + if ((0 > cx) || (driver_list::driver(cx).flags & machine_flags::IS_BIOS_ROOT)) + clonex = false; + } + + bool cloney = (y.parent[0] != '0') || y.parent[1]; + int cy = -1; + if (cloney) + { + cy = driver_list::find(y.parent); + if ((0 > cy) || (driver_list::driver(cy).flags & machine_flags::IS_BIOS_ROOT)) + cloney = false; + } + + if (!clonex && !cloney) + { + return compare_names(lhs.description, rhs.description); + } + else if (clonex && cloney) + { + if (!std::strcmp(x.parent, y.parent)) + return compare_names(lhs.description, rhs.description); + else + return compare_names(lhs.parent, rhs.parent); + } + else if (!clonex && cloney) + { + if (!std::strcmp(x.name, y.parent)) + return true; + else + return compare_names(lhs.description, rhs.parent); + } + else + { + if (!std::strcmp(x.parent, y.name)) + return false; + else + return compare_names(lhs.parent, rhs.description); + } + }); notify_available(AVAIL_SORTED_LIST); // sort manufacturers and years @@ -187,7 +256,7 @@ private: // convert descriptions to UCS-4 for (ui_system_info &info : m_sorted_list) - info.ucs_description = ustr_from_utf8(normalize_unicode(info.driver->type.fullname(), unicode_normalization_form::D, true)); + info.ucs_description = ustr_from_utf8(normalize_unicode(info.description, unicode_normalization_form::D, true)); notify_available(AVAIL_UCS_DESCRIPTION); // convert "<manufacturer> <description>" to UCS-4 @@ -196,10 +265,141 @@ private: { buf.assign(info.driver->manufacturer); buf.append(1, ' '); - buf.append(info.driver->type.fullname()); + buf.append(info.description); info.ucs_manufacturer_description = ustr_from_utf8(normalize_unicode(buf, unicode_normalization_form::D, true)); } notify_available(AVAIL_UCS_MANUF_DESC); + + // convert default descriptions to UCS-4 + if (try_titles) + { + for (ui_system_info &info : m_sorted_list) + { + std::string_view const fullname(info.driver->type.fullname()); + if (info.description != fullname) + info.ucs_default_description = ustr_from_utf8(normalize_unicode(fullname, unicode_normalization_form::D, true)); + } + } + notify_available(AVAIL_UCS_DFLT_DESC); + + // convert "<manufacturer> <default description>" to UCS-4 + if (try_titles) + { + for (ui_system_info &info : m_sorted_list) + { + std::string_view const fullname(info.driver->type.fullname()); + if (info.description != fullname) + { + buf.assign(info.driver->manufacturer); + buf.append(1, ' '); + buf.append(fullname); + info.ucs_manufacturer_default_description = ustr_from_utf8(normalize_unicode(buf, unicode_normalization_form::D, true)); + } + } + } + notify_available(AVAIL_UCS_MANUF_DFLT_DESC); + } + + void populate_list(bool copydesc) + { + m_sorted_list.reserve(driver_list::total()); + std::unordered_set<std::string> manufacturers, years; + for (int x = 0; x < driver_list::total(); ++x) + { + game_driver const &driver(driver_list::driver(x)); + if (&driver != &GAME_NAME(___empty)) + { + if (driver.flags & machine_flags::IS_BIOS_ROOT) + ++m_bios_count; + + ui_system_info &ins(m_sorted_list.emplace_back(driver, x, false)); + if (copydesc) + ins.description = driver.type.fullname(); + + m_filter_data.add_manufacturer(driver.manufacturer); + m_filter_data.add_year(driver.year); + } + } + } + + void load_titles(util::core_file &file) + { + char readbuf[1024]; + while (file.gets(readbuf, std::size(readbuf))) + { + // shortname and description separated by tab + auto const split(std::find(std::begin(readbuf), std::end(readbuf), '\t')); + if (std::end(readbuf) == split) + continue; + std::string_view const shortname(readbuf, split - readbuf); + + // find matching system - still sorted by shortname at this point + auto const found( + std::lower_bound( + m_sorted_list.begin(), + m_sorted_list.end(), + shortname, + [] (ui_system_info const &a, std::string_view const &b) + { + return a.driver->name < b; + })); + if ((m_sorted_list.end() == found) || (shortname != found->driver->name)) + { + //osd_printf_verbose("System '%s' not found\n", shortname); very spammy for single-driver builds + continue; + } + + // strip additional columns + auto const start(std::next(split)); + auto const end(std::find(start, std::end(readbuf), '\t')); + auto const description(strtrimspace(std::string_view(start, end - start))); + if (description.empty()) + { + osd_printf_warning("Empty translated description for system '%s'\n", shortname); + } + else if (!found->description.empty()) + { + osd_printf_warning( + "Multiple translated descriptions for system '%s' ('%s' and '%s')\n", + shortname, + found->description, + description); + } + else + { + found->description = description; + } + } + + // fill in untranslated descriptions + for (ui_system_info &info : m_sorted_list) + { + if (info.description.empty()) + info.description = info.driver->type.fullname(); + } + } + + void populate_parents() + { + for (ui_system_info &info : m_sorted_list) + { + if (info.driver->parent[0] != '0') + { + auto const found( + std::lower_bound( + m_sorted_list.begin(), + m_sorted_list.end(), + std::string_view(info.driver->parent), + [] (ui_system_info const &a, std::string_view const &b) + { + return a.driver->name < b; + })); + if (m_sorted_list.end() != found) + info.parent = found->description; + else + info.parent = info.driver->parent; + } + } } // synchronisation @@ -236,7 +436,7 @@ menu_select_game::menu_select_game(mame_ui_manager &mui, render_container &conta ui_options &moptions = mui.options(); // load drivers cache - m_persistent_data.cache_data(); + m_persistent_data.cache_data(mui.options()); // check if there are available system icons check_for_icons(nullptr); @@ -294,14 +494,13 @@ menu_select_game::menu_select_game(mame_ui_manager &mui, render_container &conta menu_select_game::~menu_select_game() { std::string error_string, last_driver; - game_driver const *driver; + ui_system_info const *system; ui_software_info const *swinfo; - get_selection(swinfo, driver); + get_selection(swinfo, system); if (swinfo) last_driver = swinfo->shortname; - else - if (driver) - last_driver = driver->name; + else if (system) + last_driver = system->driver->name; std::string const filter(m_persistent_data.filter_data().get_config_string()); @@ -325,6 +524,10 @@ void menu_select_game::handle() // if I have to load datfile, perform a hard reset if (ui_globals::reset) { + // dumb workaround for not being able to add an exit notifier + struct cache_reset { ~cache_reset() { persistent_data::instance().reset_cache(); } }; + ui().get_session_data<cache_reset, cache_reset>(); + ui_globals::reset = false; machine().schedule_hard_reset(); stack_reset(); @@ -334,10 +537,10 @@ void menu_select_game::handle() // if I have to select software, force software list submenu if (reselect_last::get()) { - const game_driver *driver; + const ui_system_info *system; const ui_software_info *software; - get_selection(software, driver); - menu::stack_push<menu_select_software>(ui(), container(), *driver); + get_selection(software, system); + menu::stack_push<menu_select_software>(ui(), container(), *system); return; } @@ -403,7 +606,7 @@ void menu_select_game::handle() { menu::stack_push<menu_machine_configure>( ui(), container(), - *reinterpret_cast<const game_driver *>(m_prev_selected), + *reinterpret_cast<ui_system_info const *>(m_prev_selected), nullptr, menu_event->mouse.x0, menu_event->mouse.y0); } @@ -454,16 +657,17 @@ void menu_select_game::handle() favorite_manager &mfav(mame_machine_manager::instance()->favorite()); if (!m_populated_favorites) { - game_driver const *const driver(reinterpret_cast<game_driver const *>(menu_event->itemref)); - if (!mfav.is_favorite_system(*driver)) + auto const &info(*reinterpret_cast<ui_system_info const *>(menu_event->itemref)); + auto const &driver(*info.driver); + if (!mfav.is_favorite_system(driver)) { - mfav.add_favorite_system(*driver); - machine().popmessage(_("%s\n added to favorites list."), driver->type.fullname()); + mfav.add_favorite_system(driver); + machine().popmessage(_("%s\n added to favorites list."), info.description); } else { - mfav.remove_favorite_system(*driver); - machine().popmessage(_("%s\n removed from favorites list."), driver->type.fullname()); + mfav.remove_favorite_system(driver); + machine().popmessage(_("%s\n removed from favorites list."), info.description); } } else @@ -557,7 +761,7 @@ void menu_select_game::populate(float &customtop, float &custombottom) cloneof = false; } - item_append(elem.driver->type.fullname(), (cloneof) ? (FLAGS_UI | FLAG_INVERT) : FLAGS_UI, (void *)elem.driver); + item_append(elem.description, (cloneof) ? (FLAGS_UI | FLAG_INVERT) : FLAGS_UI, (void *)&elem); curitem++; } } @@ -761,9 +965,9 @@ void menu_select_game::force_game_select(mame_ui_manager &mui, render_container void menu_select_game::inkey_select(const event *menu_event) { - const game_driver *driver = (const game_driver *)menu_event->itemref; + auto const system = reinterpret_cast<ui_system_info const *>(menu_event->itemref); - if ((uintptr_t)driver == CONF_OPTS) + if (uintptr_t(system) == CONF_OPTS) { // special case for configure options menu::stack_push<menu_game_options>( @@ -772,14 +976,14 @@ void menu_select_game::inkey_select(const event *menu_event) m_persistent_data.filter_data(), [this] () { reset(reset_options::SELECT_FIRST); }); } - else if (uintptr_t(driver) == CONF_MACHINE) + else if (uintptr_t(system) == CONF_MACHINE) { // special case for configure machine if (m_prev_selected) - menu::stack_push<menu_machine_configure>(ui(), container(), *reinterpret_cast<const game_driver *>(m_prev_selected)); + menu::stack_push<menu_machine_configure>(ui(), container(), *reinterpret_cast<const ui_system_info *>(m_prev_selected)); return; } - else if ((uintptr_t)driver == CONF_PLUGINS) + else if (uintptr_t(system) == CONF_PLUGINS) { // special case for configure plugins menu::stack_push<menu_plugins_configure>(ui(), container()); @@ -787,7 +991,7 @@ void menu_select_game::inkey_select(const event *menu_event) else { // anything else is a driver - driver_enumerator enumerator(machine().options(), *driver); + driver_enumerator enumerator(machine().options(), *system->driver); enumerator.next(); // if there are software entries, show a software selection menu @@ -795,7 +999,7 @@ void menu_select_game::inkey_select(const event *menu_event) { if (!swlistdev.get_info().empty()) { - menu::stack_push<menu_select_software>(ui(), container(), *driver); + menu::stack_push<menu_select_software>(ui(), container(), *system); return; } } @@ -807,8 +1011,8 @@ void menu_select_game::inkey_select(const event *menu_event) // if everything looks good, schedule the new driver if (audit_passed(summary)) { - if (!select_bios(*driver, false)) - launch_system(*driver); + if (!select_bios(*system->driver, false)) + launch_system(*system->driver); } else { @@ -853,7 +1057,7 @@ void menu_select_game::inkey_select_favorite(const event *menu_event) } return; } - else if ((uintptr_t)ui_swinfo == CONF_PLUGINS) + else if (uintptr_t(ui_swinfo) == CONF_PLUGINS) { // special case for configure plugins menu::stack_push<menu_plugins_configure>(ui(), container()); @@ -954,12 +1158,12 @@ void menu_select_game::change_info_pane(int delta) m_topline_datsview = 0; } }; - game_driver const *drv; + ui_system_info const *sys; ui_software_info const *soft; - get_selection(soft, drv); + get_selection(soft, sys); if (!m_populated_favorites) { - if (uintptr_t(drv) > skip_main_items) + if (uintptr_t(sys) > skip_main_items) cap_delta(ui_globals::curdats_view, ui_globals::curdats_total); } else if (uintptr_t(soft) > skip_main_items) @@ -1025,6 +1229,34 @@ void menu_select_game::populate_search() } } + // match default description + if (m_persistent_data.is_available(persistent_data::AVAIL_UCS_DFLT_DESC)) + { + m_searched_fields |= persistent_data::AVAIL_UCS_DFLT_DESC; + for (std::pair<double, std::reference_wrapper<ui_system_info const> > &info : m_searchlist) + { + if (info.first && !info.second.get().ucs_default_description.empty()) + { + double const penalty(util::edit_distance(ucs_search, info.second.get().ucs_default_description)); + info.first = (std::min)(penalty, info.first); + } + } + } + + // match default description + if (m_persistent_data.is_available(persistent_data::AVAIL_UCS_MANUF_DFLT_DESC)) + { + m_searched_fields |= persistent_data::AVAIL_UCS_DFLT_DESC; + for (std::pair<double, std::reference_wrapper<ui_system_info const> > &info : m_searchlist) + { + if (info.first && !info.second.get().ucs_manufacturer_default_description.empty()) + { + double const penalty(util::edit_distance(ucs_search, info.second.get().ucs_manufacturer_default_description)); + info.first = (std::min)(penalty, info.first); + } + } + } + // sort according to edit distance std::stable_sort( m_searchlist.begin(), @@ -1036,20 +1268,21 @@ void menu_select_game::populate_search() // generate general info //------------------------------------------------- -void menu_select_game::general_info(const game_driver *driver, std::string &buffer) +void menu_select_game::general_info(ui_system_info const &system, std::string &buffer) { - system_flags const &flags(get_system_flags(*driver)); + game_driver const &driver(*system.driver); + system_flags const &flags(get_system_flags(driver)); std::ostringstream str; str << "#j2\n"; - util::stream_format(str, _("Romset\t%1$-.100s\n"), driver->name); - util::stream_format(str, _("Year\t%1$s\n"), driver->year); - util::stream_format(str, _("Manufacturer\t%1$-.100s\n"), driver->manufacturer); + util::stream_format(str, _("Romset\t%1$-.100s\n"), driver.name); + util::stream_format(str, _("Year\t%1$s\n"), driver.year); + util::stream_format(str, _("Manufacturer\t%1$-.100s\n"), driver.manufacturer); - int cloneof = driver_list::non_bios_clone(*driver); + int cloneof = driver_list::non_bios_clone(driver); if (cloneof != -1) - util::stream_format(str, _("Driver is Clone of\t%1$-.100s\n"), driver_list::driver(cloneof).type.fullname()); + util::stream_format(str, _("Driver is Clone of\t%1$-.100s\n"), system.parent); else str << _("Driver is Parent\t\n"); @@ -1179,7 +1412,7 @@ void menu_select_game::general_info(const game_driver *driver, std::string &buff str << ((flags.machine_flags() & machine_flags::SUPPORTS_SAVE) ? _("Support Save\tYes\n") : _("Support Save\tNo\n")); str << ((flags.machine_flags() & ORIENTATION_SWAP_XY) ? _("Screen Orientation\tVertical\n") : _("Screen Orientation\tHorizontal\n")); bool found = false; - for (romload::region const ®ion : romload::entries(driver->rom).get_regions()) + for (romload::region const ®ion : romload::entries(driver.rom).get_regions()) { if (region.is_diskdata()) { @@ -1192,7 +1425,7 @@ void menu_select_game::general_info(const game_driver *driver, std::string &buff // audit the game first to see if we're going to work if (ui().options().info_audit()) { - driver_enumerator enumerator(machine().options(), *driver); + driver_enumerator enumerator(machine().options(), driver); enumerator.next(); media_auditor auditor(enumerator); media_auditor::summary summary = auditor.audit_media(AUDIT_VALIDATE_FAST); @@ -1228,7 +1461,7 @@ render_texture *menu_select_game::get_icon_texture(int linenum, void *selectedre { game_driver const *const driver(m_populated_favorites ? reinterpret_cast<ui_software_info const *>(selectedref)->driver - : reinterpret_cast<game_driver const *>(selectedref)); + : reinterpret_cast<ui_system_info const *>(selectedref)->driver); assert(driver); icon_cache::iterator icon(m_icons.find(driver)); @@ -1387,17 +1620,17 @@ float menu_select_game::draw_left_panel(float x1, float y1, float x2, float y2) // get selected software and/or driver //------------------------------------------------- -void menu_select_game::get_selection(ui_software_info const *&software, game_driver const *&driver) const +void menu_select_game::get_selection(ui_software_info const *&software, ui_system_info const *&system) const { if (m_populated_favorites) { software = reinterpret_cast<ui_software_info const *>(get_selection_ptr()); - driver = software ? software->driver : nullptr; + system = nullptr; } else { software = nullptr; - driver = reinterpret_cast<game_driver const *>(get_selection_ptr()); + system = reinterpret_cast<ui_system_info const *>(get_selection_ptr()); } } @@ -1428,17 +1661,10 @@ void menu_select_game::make_topbox_text(std::string &line0, std::string &line1, } -std::string menu_select_game::make_driver_description(game_driver const &driver) const -{ - // first line is game name - return string_format(_("Romset: %1$-.100s"), driver.name); -} - - std::string menu_select_game::make_software_description(ui_software_info const &software) const { // first line is system - return string_format(_("System: %1$-.100s"), software.driver->type.fullname()); + return string_format(_("System: %1$-.100s"), software.driver->type.fullname()); // TODO: localise description } diff --git a/src/frontend/mame/ui/selgame.h b/src/frontend/mame/ui/selgame.h index 13bfd1170ac..7eac71d534d 100644 --- a/src/frontend/mame/ui/selgame.h +++ b/src/frontend/mame/ui/selgame.h @@ -60,12 +60,11 @@ private: virtual render_texture *get_icon_texture(int linenum, void *selectedref) override; // get selected software and/or driver - virtual void get_selection(ui_software_info const *&software, game_driver const *&driver) const override; + virtual void get_selection(ui_software_info const *&software, ui_system_info const *&system) const override; virtual bool accept_search() const override { return !isfavorite(); } // text for main top/bottom panels virtual void make_topbox_text(std::string &line0, std::string &line1, std::string &line2) const override; - virtual std::string make_driver_description(game_driver const &driver) const override; virtual std::string make_software_description(ui_software_info const &software) const override; // filter navigation @@ -85,7 +84,7 @@ private: void load_custom_filters(); // General info - virtual void general_info(const game_driver *driver, std::string &buffer) override; + virtual void general_info(ui_system_info const &system, std::string &buffer) override; // handlers void inkey_select(const event *menu_event); diff --git a/src/frontend/mame/ui/selmenu.cpp b/src/frontend/mame/ui/selmenu.cpp index 15c7e1c3364..a8ee5faa263 100644 --- a/src/frontend/mame/ui/selmenu.cpp +++ b/src/frontend/mame/ui/selmenu.cpp @@ -73,29 +73,29 @@ enum std::pair<char const *, char const *> const arts_info[] = { - { __("Snapshots"), OPTION_SNAPSHOT_DIRECTORY }, - { __("Cabinets"), OPTION_CABINETS_PATH }, - { __("Control Panels"), OPTION_CPANELS_PATH }, - { __("PCBs"), OPTION_PCBS_PATH }, - { __("Flyers"), OPTION_FLYERS_PATH }, - { __("Titles"), OPTION_TITLES_PATH }, - { __("Ends"), OPTION_ENDS_PATH }, - { __("Artwork Preview"), OPTION_ARTPREV_PATH }, - { __("Bosses"), OPTION_BOSSES_PATH }, - { __("Logos"), OPTION_LOGOS_PATH }, - { __("Versus"), OPTION_VERSUS_PATH }, - { __("Game Over"), OPTION_GAMEOVER_PATH }, - { __("HowTo"), OPTION_HOWTO_PATH }, - { __("Scores"), OPTION_SCORES_PATH }, - { __("Select"), OPTION_SELECT_PATH }, - { __("Marquees"), OPTION_MARQUEES_PATH }, - { __("Covers"), OPTION_COVER_PATH }, + { N_p("selmenu-artwork", "Snapshots"), OPTION_SNAPSHOT_DIRECTORY }, + { N_p("selmenu-artwork", "Cabinet"), OPTION_CABINETS_PATH }, + { N_p("selmenu-artwork", "Control Panel"), OPTION_CPANELS_PATH }, + { N_p("selmenu-artwork", "PCB"), OPTION_PCBS_PATH }, + { N_p("selmenu-artwork", "Flyer"), OPTION_FLYERS_PATH }, + { N_p("selmenu-artwork", "Title Screen"), OPTION_TITLES_PATH }, + { N_p("selmenu-artwork", "Ending"), OPTION_ENDS_PATH }, + { N_p("selmenu-artwork", "Artwork Preview"), OPTION_ARTPREV_PATH }, + { N_p("selmenu-artwork", "Bosses"), OPTION_BOSSES_PATH }, + { N_p("selmenu-artwork", "Logo"), OPTION_LOGOS_PATH }, + { N_p("selmenu-artwork", "Versus"), OPTION_VERSUS_PATH }, + { N_p("selmenu-artwork", "Game Over"), OPTION_GAMEOVER_PATH }, + { N_p("selmenu-artwork", "HowTo"), OPTION_HOWTO_PATH }, + { N_p("selmenu-artwork", "Scores"), OPTION_SCORES_PATH }, + { N_p("selmenu-artwork", "Select"), OPTION_SELECT_PATH }, + { N_p("selmenu-artwork", "Marquee"), OPTION_MARQUEES_PATH }, + { N_p("selmenu-artwork", "Covers"), OPTION_COVER_PATH }, }; char const *const hover_msg[] = { - __("Add or remove favorites"), - __("Export displayed list to file"), - __("Show DATs view"), + N_("Add or remove favorites"), + N_("Export displayed list to file"), + N_("Show DATs view"), }; @@ -202,9 +202,6 @@ std::string menu_select_launch::reselect_last::s_software; std::string menu_select_launch::reselect_last::s_swlist; bool menu_select_launch::reselect_last::s_reselect = false; -std::mutex menu_select_launch::s_cache_guard; -menu_select_launch::cache_ptr_map menu_select_launch::s_caches; - // instantiate possible variants of these so derived classes don't get link errors template bool menu_select_launch::select_bios(game_driver const &, bool); template bool menu_select_launch::select_bios(ui_software_info const &, bool); @@ -514,7 +511,7 @@ menu_select_launch::menu_select_launch(mame_ui_manager &mui, render_container &c , m_info_view(-1) , m_items_list() , m_info_buffer() - , m_cache() + , m_cache(mui.get_session_data<menu_select_launch, cache_wrapper>(machine())) , m_is_swlist(is_swlist) , m_focus(focused_menu::MAIN) , m_pressed(false) @@ -526,22 +523,6 @@ menu_select_launch::menu_select_launch(mame_ui_manager &mui, render_container &c , m_image_view(FIRST_VIEW) , m_flags(256) { - // set up persistent cache for machine run - { - std::lock_guard<std::mutex> guard(s_cache_guard); - auto const found(s_caches.find(&machine())); - if (found != s_caches.end()) - { - assert(found->second); - m_cache = found->second; - } - else - { - m_cache = std::make_shared<cache>(machine()); - s_caches.emplace(&machine(), m_cache); - add_cleanup_callback(&menu_select_launch::exit); - } - } } @@ -663,12 +644,12 @@ void menu_select_launch::custom_render(void *selectedref, float top, float botto // determine the text to render below ui_software_info const *swinfo; - game_driver const *driver; - get_selection(swinfo, driver); + ui_system_info const *system; + get_selection(swinfo, system); bool isstar = false; rgb_t color = ui().colors().background_color(); - if (swinfo && ((swinfo->startempty != 1) || !driver)) + if (swinfo && !swinfo->startempty) { isstar = mame_machine_manager::instance()->favorite().is_favorite_system_software(*swinfo); @@ -704,26 +685,29 @@ void menu_select_launch::custom_render(void *selectedref, float top, float botto // last line is romset name tempbuf[4] = string_format(_("Software list/item: %1$s:%2$s"), swinfo->listname, swinfo->shortname); } - else if (driver) + else if (system || (swinfo && swinfo->driver)) { - isstar = mame_machine_manager::instance()->favorite().is_favorite_system(*driver); + game_driver const &driver(system ? *system->driver : *swinfo->driver); + isstar = mame_machine_manager::instance()->favorite().is_favorite_system(driver); - // first line is game description/game name - tempbuf[0] = make_driver_description(*driver); + // first line is the ROM set + tempbuf[0] = string_format(_("Romset: %1$-.100s"), driver.name); // next line is year, manufacturer - tempbuf[1] = string_format(_("%1$s, %2$-.100s"), driver->year, driver->manufacturer); + tempbuf[1] = string_format(_("%1$s, %2$-.100s"), driver.year, driver.manufacturer); // next line is clone/parent status - int cloneof = driver_list::non_bios_clone(*driver); + int cloneof = driver_list::non_bios_clone(driver); - if (cloneof != -1) - tempbuf[2] = string_format(_("Driver is clone of: %1$-.100s"), driver_list::driver(cloneof).type.fullname()); - else + if (0 > cloneof) tempbuf[2] = _("Driver is parent"); + else if (system) + tempbuf[2] = string_format(_("Driver is clone of: %1$-.100s"), system->parent); + else + tempbuf[2] = string_format(_("Driver is clone of: %1$-.100s"), driver_list::driver(cloneof).type.fullname()); // next line is overall driver status - system_flags const &flags(get_system_flags(*driver)); + system_flags const &flags(get_system_flags(driver)); if (flags.machine_flags() & machine_flags::NOT_WORKING) tempbuf[3] = _("Overall: NOT WORKING"); else if ((flags.unemulated_features() | flags.imperfect_features()) & device_t::feature::PROTECTION) @@ -739,7 +723,7 @@ void menu_select_launch::custom_render(void *selectedref, float top, float botto else tempbuf[4] = _("Graphics: OK, "); - if (driver->flags & machine_flags::NO_SOUND_HW) + if (driver.flags & machine_flags::NO_SOUND_HW) tempbuf[4].append(_("Sound: None")); else if (flags.unemulated_features() & device_t::feature::SOUND) tempbuf[4].append(_("Sound: Unimplemented")); @@ -852,19 +836,19 @@ void menu_select_launch::rotate_focus(int dir) void menu_select_launch::inkey_dats() { ui_software_info const *software; - game_driver const *driver; - get_selection(software, driver); + ui_system_info const *system; + get_selection(software, system); if (software) { if (software->startempty && mame_machine_manager::instance()->lua()->call_plugin_check<const char *>("data_list", software->driver->name, true)) menu::stack_push<menu_dats_view>(ui(), container(), software->driver); - else if (mame_machine_manager::instance()->lua()->call_plugin_check<const char *>("data_list", std::string(software->shortname).append(1, ',').append(software->listname).c_str()) || !software->usage.empty()) + else if (mame_machine_manager::instance()->lua()->call_plugin_check<const char *>("data_list", std::string(software->shortname).append(1, ',').append(software->listname).c_str()) || !software->infotext.empty()) menu::stack_push<menu_dats_view>(ui(), container(), software); } - else if (driver) + else if (system) { - if (mame_machine_manager::instance()->lua()->call_plugin_check<const char *>("data_list", driver->name, true)) - menu::stack_push<menu_dats_view>(ui(), container(), driver); + if (mame_machine_manager::instance()->lua()->call_plugin_check<const char *>("data_list", system->driver->name, true)) + menu::stack_push<menu_dats_view>(ui(), container(), system->driver); } } @@ -1261,8 +1245,8 @@ void menu_select_launch::draw_toolbar(float x1, float y1, float x2, float y2) y1 += ui().box_tb_border(); y2 -= ui().box_tb_border(); - texture_ptr_vector const &t_texture(m_is_swlist ? m_cache->sw_toolbar_texture() : m_cache->toolbar_texture()); - bitmap_vector const &t_bitmap(m_is_swlist ? m_cache->sw_toolbar_bitmap() : m_cache->toolbar_bitmap()); + texture_ptr_vector const &t_texture(m_is_swlist ? m_cache.sw_toolbar_texture() : m_cache.toolbar_texture()); + bitmap_vector const &t_bitmap(m_is_swlist ? m_cache.sw_toolbar_bitmap() : m_cache.toolbar_bitmap()); auto const num_valid(std::count_if(std::begin(t_bitmap), std::end(t_bitmap), [](bitmap_argb32 const &e) { return e.valid(); })); @@ -1300,7 +1284,7 @@ void menu_select_launch::draw_star(float x0, float y0) { float y1 = y0 + ui().get_line_height(); float x1 = x0 + ui().get_line_height() * container().manager().ui_aspect(&container()); - container().add_quad(x0, y0, x1, y1, rgb_t::white(), m_cache->star_texture(), PRIMFLAG_BLENDMODE(BLENDMODE_ALPHA) | PRIMFLAG_PACKABLE); + container().add_quad(x0, y0, x1, y1, rgb_t::white(), m_cache.star_texture(), PRIMFLAG_BLENDMODE(BLENDMODE_ALPHA) | PRIMFLAG_PACKABLE); } @@ -1335,7 +1319,7 @@ void menu_select_launch::draw_icon(int linenum, void *selectedref, float x0, flo void menu_select_launch::get_title_search(std::string &snaptext, std::string &searchstr) { // get arts title text - snaptext.assign(_(arts_info[m_image_view].first)); + snaptext.assign(_("selmenu-artwork", arts_info[m_image_view].first)); // get search path std::string addpath; @@ -2253,12 +2237,12 @@ float menu_select_launch::draw_right_box_title(float x1, float y1, float x2, flo void menu_select_launch::arts_render(float origx1, float origy1, float origx2, float origy2) { ui_software_info const *software; - game_driver const *driver; - get_selection(software, driver); + ui_system_info const *system; + get_selection(software, system); - if (software && (!software->startempty || !driver)) + if (software && (!software->startempty || !system)) { - m_cache->set_snapx_driver(nullptr); + m_cache.set_snapx_driver(nullptr); if (m_default_image) m_image_view = (software->startempty == 0) ? SNAPSHOT_VIEW : CABINETS_VIEW; @@ -2267,7 +2251,7 @@ void menu_select_launch::arts_render(float origx1, float origy1, float origx2, f std::string const searchstr = arts_render_common(origx1, origy1, origx2, origy2); // loads the image if necessary - if (!m_cache->snapx_software_is(software) || !snapx_valid() || m_switch_image) + if (!m_cache.snapx_software_is(software) || !snapx_valid() || m_switch_image) { emu_file snapfile(searchstr.c_str(), OPEN_FLAG_READ); bitmap_argb32 tmp_bitmap; @@ -2287,7 +2271,7 @@ void menu_select_launch::arts_render(float origx1, float origy1, float origx2, f load_image(tmp_bitmap, snapfile, util::path_concat(software->driver->name + software->part, software->shortname)); } - m_cache->set_snapx_software(software); + m_cache.set_snapx_software(software); m_switch_image = false; arts_render_images(std::move(tmp_bitmap), origx1, origy1, origx2, origy2); } @@ -2295,23 +2279,23 @@ void menu_select_launch::arts_render(float origx1, float origy1, float origx2, f // if the image is available, loaded and valid, display it draw_snapx(origx1, origy1, origx2, origy2); } - else if (driver) + else if (system) { - m_cache->set_snapx_software(nullptr); + m_cache.set_snapx_software(nullptr); if (m_default_image) - m_image_view = ((driver->flags & machine_flags::MASK_TYPE) != machine_flags::TYPE_ARCADE) ? CABINETS_VIEW : SNAPSHOT_VIEW; + m_image_view = ((system->driver->flags & machine_flags::MASK_TYPE) != machine_flags::TYPE_ARCADE) ? CABINETS_VIEW : SNAPSHOT_VIEW; std::string const searchstr = arts_render_common(origx1, origy1, origx2, origy2); // loads the image if necessary - if (!m_cache->snapx_driver_is(driver) || !snapx_valid() || m_switch_image) + if (!m_cache.snapx_driver_is(system->driver) || !snapx_valid() || m_switch_image) { emu_file snapfile(searchstr, OPEN_FLAG_READ); bitmap_argb32 tmp_bitmap; - load_driver_image(tmp_bitmap, snapfile, *driver); + load_driver_image(tmp_bitmap, snapfile, *system->driver); - m_cache->set_snapx_driver(driver); + m_cache.set_snapx_driver(system->driver); m_switch_image = false; arts_render_images(std::move(tmp_bitmap), origx1, origy1, origx2, origy2); } @@ -2340,7 +2324,7 @@ std::string menu_select_launch::arts_render_common(float origx1, float origy1, f { float text_length; ui().draw_text_full(container(), - _(arts_info[x].first), origx1, origy1, origx2 - origx1, + _("selmenu-artwork", arts_info[x].first), origx1, origy1, origx2 - origx1, ui::text_layout::CENTER, ui::text_layout::TRUNCATE, mame_ui_manager::NONE, rgb_t::white(), rgb_t::black(), &text_length, nullptr); title_size = (std::max)(text_length + 0.01f, title_size); @@ -2389,7 +2373,7 @@ void menu_select_launch::arts_render_images(bitmap_argb32 &&tmp_bitmap, float or if (!tmp_bitmap.valid()) { tmp_bitmap.allocate(256, 256); - const bitmap_argb32 &src(m_cache->no_avail_bitmap()); + const bitmap_argb32 &src(m_cache.no_avail_bitmap()); for (int x = 0; x < 256; x++) { for (int y = 0; y < 256; y++) @@ -2398,7 +2382,7 @@ void menu_select_launch::arts_render_images(bitmap_argb32 &&tmp_bitmap, float or no_available = true; } - bitmap_argb32 &snapx_bitmap(m_cache->snapx_bitmap()); + bitmap_argb32 &snapx_bitmap(m_cache.snapx_bitmap()); if (tmp_bitmap.valid()) { float panel_width = origx2 - origx1 - 0.02f; @@ -2459,7 +2443,7 @@ void menu_select_launch::arts_render_images(bitmap_argb32 &&tmp_bitmap, float or snapx_bitmap.pix(y + y1, x + x1) = dest_bitmap.pix(y, x); // apply bitmap - m_cache->snapx_texture()->set_bitmap(snapx_bitmap, snapx_bitmap.cliprect(), TEXFORMAT_ARGB32); + m_cache.snapx_texture()->set_bitmap(snapx_bitmap, snapx_bitmap.cliprect(), TEXFORMAT_ARGB32); } else { @@ -2484,7 +2468,7 @@ void menu_select_launch::draw_snapx(float origx1, float origy1, float origx2, fl float const y2 = origy2 - ui().box_tb_border() - line_height; // apply texture - container().add_quad(x1, y1, x2, y2, rgb_t::white(), m_cache->snapx_texture(), PRIMFLAG_BLENDMODE(BLENDMODE_ALPHA)); + container().add_quad(x1, y1, x2, y2, rgb_t::white(), m_cache.snapx_texture(), PRIMFLAG_BLENDMODE(BLENDMODE_ALPHA)); } } @@ -2598,13 +2582,6 @@ bool menu_select_launch::has_multiple_bios(game_driver const &driver, s_bios &bi } -void menu_select_launch::exit(running_machine &machine) -{ - std::lock_guard<std::mutex> guard(s_cache_guard); - s_caches.erase(&machine); -} - - //------------------------------------------------- // draw collapsed left panel //------------------------------------------------- @@ -2648,14 +2625,14 @@ void menu_select_launch::infos_render(float origx1, float origy1, float origx2, std::vector<int> xend; const char *first = ""; ui_software_info const *software; - game_driver const *driver; + ui_system_info const *system; int total; - get_selection(software, driver); + get_selection(software, system); - if (software && (!software->startempty || !driver)) + if (software && (!software->startempty || !system)) { m_info_driver = nullptr; - first = __("Usage"); + first = N_("Software List Info"); if ((m_info_software != software) || (m_info_view != ui_globals::cur_sw_dats_view)) { @@ -2677,7 +2654,7 @@ void menu_select_launch::infos_render(float origx1, float origy1, float origx2, if (m_info_view == 0) { - m_info_buffer = software->usage; + m_info_buffer = software->infotext; } else { @@ -2687,31 +2664,33 @@ void menu_select_launch::infos_render(float origx1, float origy1, float origx2, } total = ui_globals::cur_sw_dats_total; } - else if (driver) + else if (system) { m_info_software = nullptr; - first = __("General Info"); + first = N_("General Info"); - if (driver != m_info_driver || ui_globals::curdats_view != m_info_view) + if (system->driver != m_info_driver || ui_globals::curdats_view != m_info_view) { m_info_buffer.clear(); - if (driver == m_info_driver) + if (system->driver == m_info_driver) { m_info_view = ui_globals::curdats_view; } else { - m_info_driver = driver; + m_info_driver = system->driver; m_info_view = 0; ui_globals::curdats_view = 0; m_items_list.clear(); - mame_machine_manager::instance()->lua()->call_plugin("data_list", driver->name, m_items_list); + mame_machine_manager::instance()->lua()->call_plugin("data_list", system->driver->name, m_items_list); ui_globals::curdats_total = m_items_list.size() + 1; } if (m_info_view == 0) - general_info(driver, m_info_buffer); + { + general_info(*system, m_info_buffer); + } else { m_info_buffer = ""; @@ -2731,13 +2710,13 @@ void menu_select_launch::infos_render(float origx1, float origy1, float origx2, float const ud_arrow_width = line_height * aspect; float oy1 = origy1 + line_height; - std::string_view const snaptext(m_info_view ? std::string_view(m_items_list[m_info_view - 1]) : std::string_view(_(first))); + std::string_view const snaptext(m_info_view ? std::string_view(m_items_list[m_info_view - 1]) : std::string_view(_("selmenu-artwork", first))); // get width of widest title float title_size(0.0f); for (std::size_t x = 0; total > x; ++x) { - std::string_view const name(x ? std::string_view(m_items_list[x - 1]) : std::string_view(_(first))); + std::string_view const name(x ? std::string_view(m_items_list[x - 1]) : std::string_view(_("selmenu-artwork", first))); float txt_length(0.0f); ui().draw_text_full( container(), name, diff --git a/src/frontend/mame/ui/selmenu.h b/src/frontend/mame/ui/selmenu.h index 251df450e72..040c4e991fb 100644 --- a/src/frontend/mame/ui/selmenu.h +++ b/src/frontend/mame/ui/selmenu.h @@ -20,12 +20,13 @@ #include <map> #include <memory> -#include <mutex> #include <vector> +struct ui_system_info; struct ui_software_info; + namespace ui { class machine_static_info; @@ -220,8 +221,16 @@ private: texture_ptr_vector m_toolbar_texture; texture_ptr_vector m_sw_toolbar_texture; }; - using cache_ptr = std::shared_ptr<cache>; - using cache_ptr_map = std::map<running_machine *, cache_ptr>; + + // this is to satisfy the std::any requirement that objects be copyable + class cache_wrapper : public cache + { + public: + cache_wrapper(running_machine &machine) : cache(machine), m_machine(machine) { } + cache_wrapper(cache_wrapper const &that) : cache(that.m_machine), m_machine(that.m_machine) { } + private: + running_machine &m_machine; + }; using flags_cache = util::lru_cache_map<game_driver const *, system_flags>; @@ -229,7 +238,7 @@ private: bool mouse_pressed() const { return (osd_ticks() >= m_repeat); } void set_pressed(); - bool snapx_valid() const { return m_cache->snapx_bitmap().valid(); } + bool snapx_valid() const { return m_cache.snapx_bitmap().valid(); } // draw left panel virtual float draw_left_panel(float x1, float y1, float x2, float y2) = 0; @@ -237,10 +246,10 @@ private: // draw infos void infos_render(float x1, float y1, float x2, float y2); - virtual void general_info(const game_driver *driver, std::string &buffer) = 0; + virtual void general_info(ui_system_info const &system, std::string &buffer) = 0; // get selected software and/or driver - virtual void get_selection(ui_software_info const *&software, game_driver const *&driver) const = 0; + virtual void get_selection(ui_software_info const *&software, ui_system_info const *&system) const = 0; virtual bool accept_search() const { return true; } void select_prev() { @@ -293,7 +302,6 @@ private: // text for main top/bottom panels virtual void make_topbox_text(std::string &line0, std::string &line1, std::string &line2) const = 0; - virtual std::string make_driver_description(game_driver const &driver) const = 0; virtual std::string make_software_description(ui_software_info const &software) const = 0; // filter navigation @@ -305,9 +313,6 @@ private: static bool has_multiple_bios(ui_software_info const &swinfo, s_bios &biosname); static bool has_multiple_bios(game_driver const &driver, s_bios &biosname); - // cleanup function - static void exit(running_machine &machine); - bool m_ui_error; std::string m_error_text; @@ -317,7 +322,7 @@ private: std::vector<std::string> m_items_list; std::string m_info_buffer; - cache_ptr m_cache; + cache &m_cache; bool m_is_swlist; focused_menu m_focus; bool m_pressed; // mouse button held down @@ -330,9 +335,6 @@ private: bool m_default_image; uint8_t m_image_view; flags_cache m_flags; - - static std::mutex s_cache_guard; - static cache_ptr_map s_caches; }; } // namespace ui diff --git a/src/frontend/mame/ui/selsoft.cpp b/src/frontend/mame/ui/selsoft.cpp index e00a1618016..8e48cbd51cb 100644 --- a/src/frontend/mame/ui/selsoft.cpp +++ b/src/frontend/mame/ui/selsoft.cpp @@ -29,26 +29,329 @@ #include <algorithm> #include <iterator> #include <functional> +#include <thread> #include <locale> namespace ui { -menu_select_software::search_item::search_item(ui_software_info const &s) - : software(s) - , ucs_shortname(ustr_from_utf8(normalize_unicode(s.shortname, unicode_normalization_form::D, true))) - , ucs_longname(ustr_from_utf8(normalize_unicode(s.longname, unicode_normalization_form::D, true))) - , penalty(1.0) +struct menu_select_software::search_item { -} + search_item(search_item const &) = default; + search_item(search_item &&) = default; + search_item &operator=(search_item const &) = default; + search_item &operator=(search_item &&) = default; + + search_item(ui_software_info const &s) + : software(s) + , ucs_shortname(ustr_from_utf8(normalize_unicode(s.shortname, unicode_normalization_form::D, true))) + , ucs_longname(ustr_from_utf8(normalize_unicode(s.longname, unicode_normalization_form::D, true))) + , ucs_alttitles() + , penalty(1.0) + { + ucs_alttitles.reserve(s.alttitles.size()); + for (std::string const &alttitle : s.alttitles) + ucs_alttitles.emplace_back(ustr_from_utf8(normalize_unicode(alttitle, unicode_normalization_form::D, true))); + } + + void set_penalty(std::u32string const &search) + { + penalty = util::edit_distance(search, ucs_shortname); + if (penalty) + penalty = (std::min)(penalty, util::edit_distance(search, ucs_longname)); + auto it(ucs_alttitles.begin()); + while (penalty && (ucs_alttitles.end() != it)) + penalty = (std::min)(penalty, util::edit_distance(search, *it++)); + } + + std::reference_wrapper<ui_software_info const> software; + std::u32string ucs_shortname; + std::u32string ucs_longname; + std::vector<std::u32string> ucs_alttitles; + double penalty; +}; -void menu_select_software::search_item::set_penalty(std::u32string const &search) + + +class menu_select_software::machine_data { - // TODO: search alternate title as well - penalty = util::edit_distance(search, ucs_shortname); - if (penalty) - penalty = (std::min)(penalty, util::edit_distance(search, ucs_longname)); -} +public: + machine_data(menu_select_software &menu) + : m_icons(MAX_ICONS_RENDER) + , m_has_empty_start(false) + , m_filter_data() + , m_filters() + , m_filter_type(software_filter::ALL) + , m_swinfo() + , m_searchlist() + { + // add start empty item + m_swinfo.emplace_back(menu.m_driver); + + machine_config config(menu.m_driver, menu.machine().options()); + + // see if any media devices require an image to be loaded + m_has_empty_start = true; + for (device_image_interface &image : image_interface_enumerator(config.root_device())) + { + if (!image.filename() && image.must_be_loaded()) + { + m_has_empty_start = false; + break; + } + } + + // iterate through all software lists + std::vector<std::size_t> orphans; + struct orphan_less + { + std::vector<ui_software_info> &swinfo; + bool operator()(std::string const &a, std::string const &b) const { return a < b; }; + bool operator()(std::string const &a, std::size_t b) const { return a < swinfo[b].parentname; }; + bool operator()(std::size_t a, std::string const &b) const { return swinfo[a].parentname < b; }; + bool operator()(std::size_t a, std::size_t b) const { return swinfo[a].parentname < swinfo[b].parentname; }; + }; + orphan_less const orphan_cmp{ m_swinfo }; + for (software_list_device &swlist : software_list_device_enumerator(config.root_device())) + { + m_filter_data.add_list(swlist.list_name(), swlist.description()); + menu.check_for_icons(swlist.list_name().c_str()); + orphans.clear(); + std::map<std::string, std::string> parentnames; + std::map<std::string, std::string>::const_iterator prevparent(parentnames.end()); + for (const software_info &swinfo : swlist.get_info()) + { + // check for previously-encountered clones + if (swinfo.parentname().empty()) + { + if (parentnames.emplace(swinfo.shortname(), swinfo.longname()).second) + { + auto const clones(std::equal_range(orphans.begin(), orphans.end(), swinfo.shortname(), orphan_cmp)); + for (auto it = clones.first; clones.second != it; ++it) + m_swinfo[*it].parentlongname = swinfo.longname(); + orphans.erase(clones.first, clones.second); + } + else + { + assert([] (auto const x) { return x.first == x.second; } (std::equal_range(orphans.begin(), orphans.end(), swinfo.shortname(), orphan_cmp))); + } + } + + const software_part &part = swinfo.parts().front(); + if (swlist.is_compatible(part) == SOFTWARE_IS_COMPATIBLE) + { + char const *instance_name(nullptr); + char const *type_name(nullptr); + for (device_image_interface &image : image_interface_enumerator(config.root_device())) + { + char const *const interface = image.image_interface(); + if (interface && part.matches_interface(interface)) + { + instance_name = image.instance_name().c_str(); + type_name = image.image_type_name(); + break; + } + } + + if (instance_name && type_name) + { + // add to collection and try to resolve parent if applicable + auto const ins(m_swinfo.emplace(m_swinfo.end(), swinfo, part, menu.m_driver, swlist.list_name(), instance_name, type_name)); + if (!swinfo.parentname().empty()) + { + if ((parentnames.end() == prevparent) || (swinfo.parentname() != prevparent->first)) + prevparent = parentnames.find(swinfo.parentname()); + + if (parentnames.end() != prevparent) + { + ins->parentlongname = prevparent->second; + } + else + { + orphans.emplace( + std::upper_bound(orphans.begin(), orphans.end(), swinfo.parentname(), orphan_cmp), + std::distance(m_swinfo.begin(), ins)); + } + } + + // populate filter choices + m_filter_data.add_region(ins->longname); + m_filter_data.add_publisher(ins->publisher); + m_filter_data.add_year(ins->year); + for (software_info_item const &i : ins->info) + m_filter_data.add_info(i); + m_filter_data.add_device_type(ins->devicetype); + } + } + } + } + + std::string searchstr, curpath; + for (auto &elem : m_filter_data.list_names()) + { + path_iterator path(menu.machine().options().media_path()); + while (path.next(curpath)) + { + searchstr.assign(curpath).append(PATH_SEPARATOR).append(elem).append(";"); + file_enumerator fpath(searchstr.c_str()); + + // iterate while we get new objects + osd::directory::entry const *dir; + while ((dir = fpath.next()) != nullptr) + { + std::string name; + if (dir->type == osd::directory::entry::entry_type::FILE) + name = strmakelower(core_filename_extract_base(dir->name, true)); + else if (dir->type == osd::directory::entry::entry_type::DIR && strcmp(dir->name, ".") != 0) + name = strmakelower(dir->name); + else + continue; + + for (auto & yelem : m_swinfo) + if (yelem.shortname == name && yelem.listname == elem) + { + yelem.available = true; + break; + } + } + } + } + + // sort array + std::collate<wchar_t> const &coll = std::use_facet<std::collate<wchar_t>>(std::locale()); + auto const compare_names = + [&coll] (std::string const &x, std::string const &y) -> bool + { + std::wstring const wx = wstring_from_utf8(x); + std::wstring const wy = wstring_from_utf8(y); + return 0 > coll.compare(wx.data(), wx.data() + wx.size(), wy.data(), wy.data() + wy.size()); + }; + std::stable_sort( + m_swinfo.begin() + 1, + m_swinfo.end(), + [&compare_names] (ui_software_info const &a, ui_software_info const &b) -> bool + { + bool const clonex = !a.parentname.empty() && !a.parentlongname.empty(); + bool const cloney = !b.parentname.empty() && !b.parentlongname.empty(); + + if (!clonex && !cloney) + { + return compare_names(a.longname, b.longname); + } + else if (!clonex && cloney) + { + if ((a.shortname == b.parentname) && (a.instance == b.instance)) + return true; + else + return compare_names(a.longname, b.longname); + } + else if (clonex && !cloney) + { + if ((a.parentname == b.shortname) && (a.instance == b.instance)) + return false; + else + return compare_names(a.longname, b.longname); + } + else if ((a.parentname == b.parentname) && (a.instance == b.instance)) + { + return compare_names(a.longname, b.longname); + } + else + { + return compare_names(a.parentlongname, b.parentlongname); + } + }); + + // start populating search info in background + m_search_thread = std::make_unique<std::thread>( + [this] () + { + m_searchlist.reserve(m_swinfo.size()); + for (ui_software_info const &sw : m_swinfo) + m_searchlist.emplace_back(sw); + }); + + // build derivative filter data + m_filter_data.finalise(); + + // load custom filters info from file + emu_file file(menu.ui().options().ui_path(), OPEN_FLAG_READ); + if (!file.open(util::string_format("custom_%s_filter.ini", menu.m_driver.name))) + { + software_filter::ptr flt(software_filter::create(file, m_filter_data)); + if (flt) + m_filters.emplace(flt->get_type(), std::move(flt)); + file.close(); + } + } + + ~machine_data() + { + if (m_search_thread) + m_search_thread->join(); + } + + icon_cache &icons() { return m_icons; } + + bool has_empty_start() const noexcept { return m_has_empty_start; } + + filter_map const &filters() const noexcept { return m_filters; } + + software_filter::type filter_type() const noexcept { return m_filter_type; } + void set_filter_type(software_filter::type type) noexcept { m_filter_type = type; } + + software_filter const *current_filter() const noexcept + { + auto const found(m_filters.find(m_filter_type)); + return (m_filters.end() != found) ? found->second.get() : nullptr; + } + + software_filter &get_filter(software_filter::type type) + { + filter_map::const_iterator it(m_filters.find(type)); + if (m_filters.end() != it) + return *it->second; + else + return *m_filters.emplace(type, software_filter::create(type, m_filter_data)).first->second; + } + + std::vector<ui_software_info> const &swinfo() const noexcept { return m_swinfo; } + + std::vector<search_item> const &find_matches(std::string const &search) + { + // ensure search list is populated + if (m_search_thread) + { + m_search_thread->join(); + m_search_thread.reset(); + } + + // update search + const std::u32string ucs_search(ustr_from_utf8(normalize_unicode(search, unicode_normalization_form::D, true))); + for (search_item &entry : m_searchlist) + entry.set_penalty(ucs_search); + + // sort according to edit distance + std::stable_sort( + m_searchlist.begin(), + m_searchlist.end(), + [] (search_item const &lhs, search_item const &rhs) { return lhs.penalty < rhs.penalty; }); + + // return reference to search results + return m_searchlist; + } + +private: + icon_cache m_icons; + bool m_has_empty_start; + software_filter_data m_filter_data; + filter_map m_filters; + software_filter::type m_filter_type; + std::vector<ui_software_info> m_swinfo; + std::vector<search_item> m_searchlist; + + std::unique_ptr<std::thread> m_search_thread; +}; //------------------------------------------------- @@ -56,23 +359,35 @@ void menu_select_software::search_item::set_penalty(std::u32string const &search //------------------------------------------------- menu_select_software::menu_select_software(mame_ui_manager &mui, render_container &container, game_driver const &driver) + : menu_select_software(mui, container, driver.type.fullname(), driver) +{ +} + +menu_select_software::menu_select_software(mame_ui_manager &mui, render_container &container, ui_system_info const &system) + : menu_select_software(mui, container, system.description.c_str(), *system.driver) +{ +} + +menu_select_software::menu_select_software( + mame_ui_manager &mui, + render_container &container, + char const *description, + game_driver const &driver) : menu_select_launch(mui, container, true) , m_icon_paths() - , m_icons(MAX_ICONS_RENDER) + , m_description(description) , m_driver(driver) - , m_has_empty_start(false) - , m_filter_data() - , m_filters() - , m_filter_type(software_filter::ALL) - , m_swinfo() - , m_searchlist() , m_displaylist() { reselect_last::reselect(false); - build_software_list(); - load_sw_custom_filters(); - m_filter_highlight = m_filter_type; + using machine_data_cache = util::lru_cache_map<game_driver const *, std::shared_ptr<machine_data> >; + auto &cached(mui.get_session_data<menu_select_software, machine_data_cache>(8)[&driver]); + if (!cached) + cached = std::make_shared<machine_data>(*this); + m_data = cached; + + m_filter_highlight = m_data->filter_type(); set_switch_image(); ui_globals::cur_sw_dats_view = 0; @@ -204,7 +519,7 @@ void menu_select_software::handle() void menu_select_software::populate(float &customtop, float &custombottom) { - for (auto &icon : m_icons) // TODO: why is this here? maybe better on resize or setting change? + for (auto &icon : m_data->icons()) // TODO: why is this here? maybe better on resize or setting change? icon.second.texture.reset(); uint32_t flags_ui = FLAG_LEFT_ARROW | FLAG_RIGHT_ARROW; @@ -212,37 +527,37 @@ void menu_select_software::populate(float &customtop, float &custombottom) // start with an empty list m_displaylist.clear(); - filter_map::const_iterator const flt(m_filters.find(m_filter_type)); + software_filter const *const flt(m_data->current_filter()); // no active search if (m_search.empty()) { // if the device can be loaded empty, add an item - if (m_has_empty_start) - item_append("[Start empty]", flags_ui, (void *)&m_swinfo[0]); + if (m_data->has_empty_start()) + item_append("[Start empty]", flags_ui, (void *)&m_data->swinfo()[0]); - if (m_filters.end() == flt) - std::copy(std::next(m_swinfo.begin()), m_swinfo.end(), std::back_inserter(m_displaylist)); + if (!flt) + std::copy(std::next(m_data->swinfo().begin()), m_data->swinfo().end(), std::back_inserter(m_displaylist)); else - flt->second->apply(std::next(m_swinfo.begin()), m_swinfo.end(), std::back_inserter(m_displaylist)); + flt->apply(std::next(m_data->swinfo().begin()), m_data->swinfo().end(), std::back_inserter(m_displaylist)); } else { - find_matches(); + std::vector<search_item> const &searchlist = m_data->find_matches(m_search); - if (m_filters.end() == flt) + if (!flt) { std::transform( - m_searchlist.begin(), - std::next(m_searchlist.begin(), (std::min)(m_searchlist.size(), MAX_VISIBLE_SEARCH)), + searchlist.begin(), + std::next(searchlist.begin(), (std::min)(searchlist.size(), MAX_VISIBLE_SEARCH)), std::back_inserter(m_displaylist), [] (search_item const &entry) { return entry.software; }); } else { - for (auto it = m_searchlist.begin(); (m_searchlist.end() != it) && (MAX_VISIBLE_SEARCH > m_displaylist.size()); ++it) + for (auto it = searchlist.begin(); (searchlist.end() != it) && (MAX_VISIBLE_SEARCH > m_displaylist.size()); ++it) { - if (flt->second->apply(it->software)) + if (flt->apply(it->software)) m_displaylist.emplace_back(it->software); } } @@ -254,7 +569,7 @@ void menu_select_software::populate(float &customtop, float &custombottom) if (reselect_last::software() == "[Start empty]" && !reselect_last::driver().empty()) old_software = 0; else if (m_displaylist[curitem].get().shortname == reselect_last::software() && m_displaylist[curitem].get().listname == reselect_last::swlist()) - old_software = m_has_empty_start ? curitem + 1 : curitem; + old_software = m_data->has_empty_start() ? curitem + 1 : curitem; item_append( m_displaylist[curitem].get().longname, m_displaylist[curitem].get().devicetype, @@ -276,191 +591,6 @@ void menu_select_software::populate(float &customtop, float &custombottom) reselect_last::reset(); } -//------------------------------------------------- -// build a list of software -//------------------------------------------------- - -void menu_select_software::build_software_list() -{ - // add start empty item - m_swinfo.emplace_back(m_driver); - - machine_config config(m_driver, machine().options()); - - // see if any media devices require an image to be loaded - m_has_empty_start = true; - for (device_image_interface &image : image_interface_enumerator(config.root_device())) - { - if (!image.filename() && image.must_be_loaded()) - { - m_has_empty_start = false; - break; - } - } - - // iterate through all software lists - std::vector<std::size_t> orphans; - struct orphan_less - { - std::vector<ui_software_info> &swinfo; - bool operator()(std::string const &a, std::string const &b) const { return a < b; }; - bool operator()(std::string const &a, std::size_t b) const { return a < swinfo[b].parentname; }; - bool operator()(std::size_t a, std::string const &b) const { return swinfo[a].parentname < b; }; - bool operator()(std::size_t a, std::size_t b) const { return swinfo[a].parentname < swinfo[b].parentname; }; - }; - orphan_less const orphan_cmp{ m_swinfo }; - for (software_list_device &swlist : software_list_device_enumerator(config.root_device())) - { - m_filter_data.add_list(swlist.list_name(), swlist.description()); - check_for_icons(swlist.list_name().c_str()); - orphans.clear(); - std::map<std::string, std::string> parentnames; - std::map<std::string, std::string>::const_iterator prevparent(parentnames.end()); - for (const software_info &swinfo : swlist.get_info()) - { - // check for previously-encountered clones - if (swinfo.parentname().empty()) - { - if (parentnames.emplace(swinfo.shortname(), swinfo.longname()).second) - { - auto const clones(std::equal_range(orphans.begin(), orphans.end(), swinfo.shortname(), orphan_cmp)); - for (auto it = clones.first; clones.second != it; ++it) - m_swinfo[*it].parentlongname = swinfo.longname(); - orphans.erase(clones.first, clones.second); - } - else - { - assert([] (auto const x) { return x.first == x.second; } (std::equal_range(orphans.begin(), orphans.end(), swinfo.shortname(), orphan_cmp))); - } - } - - const software_part &part = swinfo.parts().front(); - if (swlist.is_compatible(part) == SOFTWARE_IS_COMPATIBLE) - { - char const *instance_name(nullptr); - char const *type_name(nullptr); - for (device_image_interface &image : image_interface_enumerator(config.root_device())) - { - char const *const interface = image.image_interface(); - if (interface && part.matches_interface(interface)) - { - instance_name = image.instance_name().c_str(); - type_name = image.image_type_name(); - break; - } - } - - if (instance_name && type_name) - { - // add to collection and try to resolve parent if applicable - auto const ins(m_swinfo.emplace(m_swinfo.end(), swinfo, part, m_driver, swlist.list_name(), instance_name, type_name)); - if (!swinfo.parentname().empty()) - { - if ((parentnames.end() == prevparent) || (swinfo.parentname() != prevparent->first)) - prevparent = parentnames.find(swinfo.parentname()); - - if (parentnames.end() != prevparent) - { - ins->parentlongname = prevparent->second; - } - else - { - orphans.emplace( - std::upper_bound(orphans.begin(), orphans.end(), swinfo.parentname(), orphan_cmp), - std::distance(m_swinfo.begin(), ins)); - } - } - - // populate filter choices - m_filter_data.add_region(ins->longname); - m_filter_data.add_publisher(ins->publisher); - m_filter_data.add_year(ins->year); - m_filter_data.add_device_type(ins->devicetype); - } - } - } - } - - std::string searchstr, curpath; - for (auto &elem : m_filter_data.list_names()) - { - path_iterator path(machine().options().media_path()); - while (path.next(curpath)) - { - searchstr.assign(curpath).append(PATH_SEPARATOR).append(elem).append(";"); - file_enumerator fpath(searchstr.c_str()); - - // iterate while we get new objects - osd::directory::entry const *dir; - while ((dir = fpath.next()) != nullptr) - { - std::string name; - if (dir->type == osd::directory::entry::entry_type::FILE) - name = strmakelower(core_filename_extract_base(dir->name, true)); - else if (dir->type == osd::directory::entry::entry_type::DIR && strcmp(dir->name, ".") != 0) - name = strmakelower(dir->name); - else - continue; - - for (auto & yelem : m_swinfo) - if (yelem.shortname == name && yelem.listname == elem) - { - yelem.available = true; - break; - } - } - } - } - - // sort array - std::collate<wchar_t> const &coll = std::use_facet<std::collate<wchar_t>>(std::locale()); - auto const compare_names = - [&coll] (std::string const &x, std::string const &y) -> bool - { - std::wstring const wx = wstring_from_utf8(x); - std::wstring const wy = wstring_from_utf8(y); - return 0 > coll.compare(wx.data(), wx.data() + wx.size(), wy.data(), wy.data() + wy.size()); - }; - std::stable_sort( - m_swinfo.begin() + 1, - m_swinfo.end(), - [&compare_names] (ui_software_info const &a, ui_software_info const &b) -> bool - { - bool const clonex = !a.parentname.empty() && !a.parentlongname.empty(); - bool const cloney = !b.parentname.empty() && !b.parentlongname.empty(); - - if (!clonex && !cloney) - { - return compare_names(a.longname, b.longname); - } - else if (!clonex && cloney) - { - if ((a.shortname == b.parentname) && (a.instance == b.instance)) - return true; - else - return compare_names(a.longname, b.longname); - } - else if (clonex && !cloney) - { - if ((a.parentname == b.shortname) && (a.instance == b.instance)) - return false; - else - return compare_names(a.longname, b.longname); - } - else if ((a.parentname == b.parentname) && (a.instance == b.instance)) - { - return compare_names(a.longname, b.longname); - } - else - { - return compare_names(a.parentlongname, b.parentlongname); - } - }); - - - m_filter_data.finalise(); -} - //------------------------------------------------- // handle select key event @@ -512,54 +642,12 @@ void menu_select_software::inkey_select(const event *menu_event) //------------------------------------------------- -// load custom filters info from file -//------------------------------------------------- - -void menu_select_software::load_sw_custom_filters() -{ - // attempt to open the output file - emu_file file(ui().options().ui_path(), OPEN_FLAG_READ); - if (!file.open(util::string_format("custom_%s_filter.ini", m_driver.name))) - { - software_filter::ptr flt(software_filter::create(file, m_filter_data)); - if (flt) - m_filters.emplace(flt->get_type(), std::move(flt)); - file.close(); - } -} - -//------------------------------------------------- -// find approximate matches -//------------------------------------------------- - -void menu_select_software::find_matches() -{ - // ensure search list is populated - if (m_searchlist.empty()) - { - m_searchlist.reserve(m_swinfo.size()); - std::copy(m_swinfo.begin(), m_swinfo.end(), std::back_inserter(m_searchlist)); - } - - // update search - const std::u32string ucs_search(ustr_from_utf8(normalize_unicode(m_search, unicode_normalization_form::D, true))); - for (search_item &entry : m_searchlist) - entry.set_penalty(ucs_search); - - // sort according to edit distance - std::stable_sort( - m_searchlist.begin(), - m_searchlist.end(), - [] (search_item const &lhs, search_item const &rhs) { return lhs.penalty < rhs.penalty; }); -} - -//------------------------------------------------- // draw left box //------------------------------------------------- float menu_select_software::draw_left_panel(float x1, float y1, float x2, float y2) { - return menu_select_launch::draw_left_panel<software_filter>(m_filter_type, m_filters, x1, y1, x2, y2); + return menu_select_launch::draw_left_panel<software_filter>(m_data->filter_type(), m_data->filters(), x1, y1, x2, y2); } @@ -575,17 +663,17 @@ render_texture *menu_select_software::get_icon_texture(int linenum, void *select if (swinfo->startempty) return nullptr; - icon_cache::iterator icon(m_icons.find(swinfo)); - if ((m_icons.end() == icon) || !icon->second.texture) + icon_cache::iterator icon(m_data->icons().find(swinfo)); + if ((m_data->icons().end() == icon) || !icon->second.texture) { std::map<std::string, std::string>::iterator paths(m_icon_paths.find(swinfo->listname)); if (m_icon_paths.end() == paths) paths = m_icon_paths.emplace(swinfo->listname, make_icon_paths(swinfo->listname.c_str())).first; // allocate an entry or allocate a texture on forced redraw - if (m_icons.end() == icon) + if (m_data->icons().end() == icon) { - icon = m_icons.emplace(swinfo, texture_ptr(machine().render().texture_alloc(), machine().render())).first; + icon = m_data->icons().emplace(swinfo, texture_ptr(machine().render().texture_alloc(), machine().render())).first; } else { @@ -617,36 +705,29 @@ render_texture *menu_select_software::get_icon_texture(int linenum, void *select // get selected software and/or driver //------------------------------------------------- -void menu_select_software::get_selection(ui_software_info const *&software, game_driver const *&driver) const +void menu_select_software::get_selection(ui_software_info const *&software, ui_system_info const *&system) const { software = reinterpret_cast<ui_software_info const *>(get_selection_ptr()); - driver = software ? software->driver : nullptr; + system = nullptr; } void menu_select_software::make_topbox_text(std::string &line0, std::string &line1, std::string &line2) const { // determine the text for the header - int vis_item = !m_search.empty() ? m_available_items : (m_has_empty_start ? m_available_items - 1 : m_available_items); - line0 = string_format(_("%1$s %2$s ( %3$d / %4$d software packages )"), emulator_info::get_appname(), bare_build_version, vis_item, m_swinfo.size() - 1); - line1 = string_format(_("Driver: \"%1$s\" software list "), m_driver.type.fullname()); + int vis_item = !m_search.empty() ? m_available_items : (m_data->has_empty_start() ? m_available_items - 1 : m_available_items); + line0 = string_format(_("%1$s %2$s ( %3$d / %4$d software packages )"), emulator_info::get_appname(), bare_build_version, vis_item, m_data->swinfo().size() - 1); + line1 = string_format(_("Driver: \"%1$s\" software list "), m_description); - filter_map::const_iterator const it(m_filters.find(m_filter_type)); - char const *const filter((m_filters.end() != it) ? it->second->filter_text() : nullptr); + software_filter const *const it(m_data->current_filter()); + char const *const filter(it ? it->filter_text() : nullptr); if (filter) - line2 = string_format(_("%1$s: %2$s - Search: %3$s_"), it->second->display_name(), filter, m_search); + line2 = string_format(_("%1$s: %2$s - Search: %3$s_"), it->display_name(), filter, m_search); else line2 = string_format(_("Search: %1$s_"), m_search); } -std::string menu_select_software::make_driver_description(game_driver const &driver) const -{ - // first line is game description - return string_format(_("%1$-.100s"), driver.type.fullname()); -} - - std::string menu_select_software::make_software_description(ui_software_info const &software) const { // first line is long name @@ -658,10 +739,7 @@ void menu_select_software::filter_selected() { if ((software_filter::FIRST <= m_filter_highlight) && (software_filter::LAST >= m_filter_highlight)) { - filter_map::const_iterator it(m_filters.find(software_filter::type(m_filter_highlight))); - if (m_filters.end() == it) - it = m_filters.emplace(software_filter::type(m_filter_highlight), software_filter::create(software_filter::type(m_filter_highlight), m_filter_data)).first; - it->second->show_ui( + m_data->get_filter(software_filter::type(m_filter_highlight)).show_ui( ui(), container(), [this] (software_filter &filter) @@ -676,7 +754,7 @@ void menu_select_software::filter_selected() file.close(); } } - m_filter_type = new_type; + m_data->set_filter_type(new_type); reset(reset_options::SELECT_FIRST); }); } diff --git a/src/frontend/mame/ui/selsoft.h b/src/frontend/mame/ui/selsoft.h index 1bfdd9c1e48..ebf3e77df89 100644 --- a/src/frontend/mame/ui/selsoft.h +++ b/src/frontend/mame/ui/selsoft.h @@ -15,7 +15,10 @@ #include "ui/selmenu.h" #include "ui/utils.h" +#include "lrucache.h" + #include <map> +#include <memory> #include <string> #include <vector> @@ -27,26 +30,17 @@ class menu_select_software : public menu_select_launch { public: menu_select_software(mame_ui_manager &mui, render_container &container, game_driver const &driver); + menu_select_software(mame_ui_manager &mui, render_container &container, ui_system_info const &system); virtual ~menu_select_software() override; private: using filter_map = std::map<software_filter::type, software_filter::ptr>; using icon_cache = texture_lru<ui_software_info const *>; - struct search_item - { - search_item(ui_software_info const &s); - search_item(search_item const &) = default; - search_item(search_item &&) = default; - search_item &operator=(search_item const &) = default; - search_item &operator=(search_item &&) = default; - void set_penalty(std::u32string const &search); - - std::reference_wrapper<ui_software_info const> software; - std::u32string ucs_shortname; - std::u32string ucs_longname; - double penalty; - }; + struct search_item; + class machine_data; + + menu_select_software(mame_ui_manager &mui, render_container &container, char const *description, game_driver const &driver); virtual void populate(float &customtop, float &custombottom) override; virtual void handle() override; @@ -56,11 +50,10 @@ private: virtual render_texture *get_icon_texture(int linenum, void *selectedref) override; // get selected software and/or driver - virtual void get_selection(ui_software_info const *&software, game_driver const *&driver) const override; + virtual void get_selection(ui_software_info const *&software, ui_system_info const *&system) const override; // text for main top/bottom panels virtual void make_topbox_text(std::string &line0, std::string &line1, std::string &line2) const override; - virtual std::string make_driver_description(game_driver const &driver) const override; virtual std::string make_software_description(ui_software_info const &software) const override; // filter navigation @@ -69,25 +62,16 @@ private: // toolbar virtual void inkey_export() override { throw false; } - void build_software_list(); - void find_matches(); - void load_sw_custom_filters(); - // handlers void inkey_select(const event *menu_event); - virtual void general_info(const game_driver *driver, std::string &buffer) override { } + virtual void general_info(ui_system_info const &system, std::string &buffer) override { } std::map<std::string, std::string> m_icon_paths; - icon_cache m_icons; + char const *const m_description; game_driver const &m_driver; - bool m_has_empty_start; - software_filter_data m_filter_data; - filter_map m_filters; - software_filter::type m_filter_type; + std::shared_ptr<machine_data> m_data; - std::vector<ui_software_info> m_swinfo; - std::vector<search_item> m_searchlist; std::vector<std::reference_wrapper<ui_software_info const> > m_displaylist; }; diff --git a/src/frontend/mame/ui/submenu.cpp b/src/frontend/mame/ui/submenu.cpp index d93b7a8af6a..5e6e0cc4152 100644 --- a/src/frontend/mame/ui/submenu.cpp +++ b/src/frontend/mame/ui/submenu.cpp @@ -28,111 +28,111 @@ namespace ui { std::vector<submenu::option> submenu::misc_options() { return std::vector<option>{ - { option_type::HEAD, __("Miscellaneous Options") }, - { option_type::UI, __("Skip imperfect emulation warnings"), OPTION_SKIP_WARNINGS }, - { option_type::UI, __("Re-select last machine launched"), OPTION_REMEMBER_LAST }, - { option_type::UI, __("Enlarge images in the right panel"), OPTION_ENLARGE_SNAPS }, - { option_type::EMU, __("Cheats"), OPTION_CHEAT }, - { option_type::EMU, __("Show mouse pointer"), OPTION_UI_MOUSE }, - { option_type::EMU, __("Confirm quit from machines"), OPTION_CONFIRM_QUIT }, - { option_type::EMU, __("Skip information screen at startup"), OPTION_SKIP_GAMEINFO }, - { option_type::UI, __("Force 4:3 aspect for snapshot display"), OPTION_FORCED4X3 }, - { option_type::UI, __("Use image as background"), OPTION_USE_BACKGROUND }, - { option_type::UI, __("Skip BIOS selection menu"), OPTION_SKIP_BIOS_MENU }, - { option_type::UI, __("Skip software parts selection menu"), OPTION_SKIP_PARTS_MENU }, - { option_type::UI, __("Info auto audit"), OPTION_INFO_AUTO_AUDIT }, - { option_type::UI, __("Hide romless machine from available list"),OPTION_HIDE_ROMLESS } }; + { option_type::HEAD, N_("Miscellaneous Options") }, + { option_type::UI, N_("Skip imperfect emulation warnings"), OPTION_SKIP_WARNINGS }, + { option_type::UI, N_("Re-select last machine launched"), OPTION_REMEMBER_LAST }, + { option_type::UI, N_("Enlarge images in the right panel"), OPTION_ENLARGE_SNAPS }, + { option_type::EMU, N_("Cheats"), OPTION_CHEAT }, + { option_type::EMU, N_("Show mouse pointer"), OPTION_UI_MOUSE }, + { option_type::EMU, N_("Confirm quit from machines"), OPTION_CONFIRM_QUIT }, + { option_type::EMU, N_("Skip information screen at startup"), OPTION_SKIP_GAMEINFO }, + { option_type::UI, N_("Force 4:3 aspect for snapshot display"), OPTION_FORCED4X3 }, + { option_type::UI, N_("Use image as background"), OPTION_USE_BACKGROUND }, + { option_type::UI, N_("Skip BIOS selection menu"), OPTION_SKIP_BIOS_MENU }, + { option_type::UI, N_("Skip software parts selection menu"), OPTION_SKIP_PARTS_MENU }, + { option_type::UI, N_("Info auto audit"), OPTION_INFO_AUTO_AUDIT }, + { option_type::UI, N_("Hide romless machine from available list"),OPTION_HIDE_ROMLESS } }; } std::vector<submenu::option> submenu::advanced_options() { return std::vector<option>{ - { option_type::HEAD, __("Advanced Options") }, - { option_type::HEAD, __("Performance Options") }, - { option_type::EMU, __("Auto frame skip"), OPTION_AUTOFRAMESKIP }, - { option_type::EMU, __("Frame skip"), OPTION_FRAMESKIP }, - { option_type::EMU, __("Throttle"), OPTION_THROTTLE }, - { option_type::UI, __("Mute when unthrottled"), OPTION_UNTHROTTLE_MUTE }, - { option_type::EMU, __("Sleep"), OPTION_SLEEP }, - { option_type::EMU, __("Speed"), OPTION_SPEED }, - { option_type::EMU, __("Adjust speed to match refresh rate"), OPTION_REFRESHSPEED }, - { option_type::EMU, __("Low latency"), OPTION_LOWLATENCY }, - - { option_type::HEAD, __("Rotation Options") }, - { option_type::EMU, __("Rotate"), OPTION_ROTATE }, - { option_type::EMU, __("Rotate right"), OPTION_ROR }, - { option_type::EMU, __("Rotate left"), OPTION_ROL }, - { option_type::EMU, __("Auto rotate right"), OPTION_AUTOROR }, - { option_type::EMU, __("Auto rotate left"), OPTION_AUTOROL }, - { option_type::EMU, __("Flip X"), OPTION_FLIPX }, - { option_type::EMU, __("Flip Y"), OPTION_FLIPY }, - - { option_type::HEAD, __("Artwork Options") }, - { option_type::EMU, __("Zoom to screen area"), OPTION_ARTWORK_CROP }, - - { option_type::HEAD, __("State/Playback Options") }, - { option_type::EMU, __("Automatic save/restore"), OPTION_AUTOSAVE }, - { option_type::EMU, __("Allow rewind"), OPTION_REWIND }, - { option_type::EMU, __("Rewind capacity"), OPTION_REWIND_CAPACITY }, - { option_type::EMU, __("Bilinear filtering for snapshots"), OPTION_SNAPBILINEAR }, - { option_type::EMU, __("Burn-in"), OPTION_BURNIN }, - - { option_type::HEAD, __("Input Options") }, - { option_type::EMU, __("Coin lockout"), OPTION_COIN_LOCKOUT }, - { option_type::EMU, __("Mouse"), OPTION_MOUSE }, - { option_type::EMU, __("Joystick"), OPTION_JOYSTICK }, - { option_type::EMU, __("Lightgun"), OPTION_LIGHTGUN }, - { option_type::EMU, __("Multi-keyboard"), OPTION_MULTIKEYBOARD }, - { option_type::EMU, __("Multi-mouse"), OPTION_MULTIMOUSE }, - { option_type::EMU, __("Steadykey"), OPTION_STEADYKEY }, - { option_type::EMU, __("UI active"), OPTION_UI_ACTIVE }, - { option_type::EMU, __("Offscreen reload"), OPTION_OFFSCREEN_RELOAD }, - { option_type::EMU, __("Joystick deadzone"), OPTION_JOYSTICK_DEADZONE }, - { option_type::EMU, __("Joystick saturation"), OPTION_JOYSTICK_SATURATION }, - { option_type::EMU, __("Natural keyboard"), OPTION_NATURAL_KEYBOARD }, - { option_type::EMU, __("Simultaneous contradictory"), OPTION_JOYSTICK_CONTRADICTORY }, - { option_type::EMU, __("Coin impulse"), OPTION_COIN_IMPULSE } }; + { option_type::HEAD, N_("Advanced Options") }, + { option_type::HEAD, N_("Performance Options") }, + { option_type::EMU, N_("Auto frame skip"), OPTION_AUTOFRAMESKIP }, + { option_type::EMU, N_("Frame skip"), OPTION_FRAMESKIP }, + { option_type::EMU, N_("Throttle"), OPTION_THROTTLE }, + { option_type::UI, N_("Mute when unthrottled"), OPTION_UNTHROTTLE_MUTE }, + { option_type::EMU, N_("Sleep"), OPTION_SLEEP }, + { option_type::EMU, N_("Speed"), OPTION_SPEED }, + { option_type::EMU, N_("Adjust speed to match refresh rate"), OPTION_REFRESHSPEED }, + { option_type::EMU, N_("Low latency"), OPTION_LOWLATENCY }, + + { option_type::HEAD, N_("Rotation Options") }, + { option_type::EMU, N_("Rotate"), OPTION_ROTATE }, + { option_type::EMU, N_("Rotate right"), OPTION_ROR }, + { option_type::EMU, N_("Rotate left"), OPTION_ROL }, + { option_type::EMU, N_("Auto rotate right"), OPTION_AUTOROR }, + { option_type::EMU, N_("Auto rotate left"), OPTION_AUTOROL }, + { option_type::EMU, N_("Flip X"), OPTION_FLIPX }, + { option_type::EMU, N_("Flip Y"), OPTION_FLIPY }, + + { option_type::HEAD, N_("Artwork Options") }, + { option_type::EMU, N_("Zoom to screen area"), OPTION_ARTWORK_CROP }, + + { option_type::HEAD, N_("State/Playback Options") }, + { option_type::EMU, N_("Automatic save/restore"), OPTION_AUTOSAVE }, + { option_type::EMU, N_("Allow rewind"), OPTION_REWIND }, + { option_type::EMU, N_("Rewind capacity"), OPTION_REWIND_CAPACITY }, + { option_type::EMU, N_("Bilinear filtering for snapshots"), OPTION_SNAPBILINEAR }, + { option_type::EMU, N_("Burn-in"), OPTION_BURNIN }, + + { option_type::HEAD, N_("Input Options") }, + { option_type::EMU, N_("Coin lockout"), OPTION_COIN_LOCKOUT }, + { option_type::EMU, N_("Mouse"), OPTION_MOUSE }, + { option_type::EMU, N_("Joystick"), OPTION_JOYSTICK }, + { option_type::EMU, N_("Lightgun"), OPTION_LIGHTGUN }, + { option_type::EMU, N_("Multi-keyboard"), OPTION_MULTIKEYBOARD }, + { option_type::EMU, N_("Multi-mouse"), OPTION_MULTIMOUSE }, + { option_type::EMU, N_("Steadykey"), OPTION_STEADYKEY }, + { option_type::EMU, N_("UI active"), OPTION_UI_ACTIVE }, + { option_type::EMU, N_("Offscreen reload"), OPTION_OFFSCREEN_RELOAD }, + { option_type::EMU, N_("Joystick deadzone"), OPTION_JOYSTICK_DEADZONE }, + { option_type::EMU, N_("Joystick saturation"), OPTION_JOYSTICK_SATURATION }, + { option_type::EMU, N_("Natural keyboard"), OPTION_NATURAL_KEYBOARD }, + { option_type::EMU, N_("Simultaneous contradictory"), OPTION_JOYSTICK_CONTRADICTORY }, + { option_type::EMU, N_("Coin impulse"), OPTION_COIN_IMPULSE } }; } std::vector<submenu::option> submenu::control_options() { return std::vector<option>{ - { option_type::HEAD, __("Device Mapping") }, - { option_type::EMU, __("Lightgun Device Assignment"), OPTION_LIGHTGUN_DEVICE }, - { option_type::EMU, __("Trackball Device Assignment"), OPTION_TRACKBALL_DEVICE }, - { option_type::EMU, __("Pedal Device Assignment"), OPTION_PEDAL_DEVICE }, - { option_type::EMU, __("Adstick Device Assignment"), OPTION_ADSTICK_DEVICE }, - { option_type::EMU, __("Paddle Device Assignment"), OPTION_PADDLE_DEVICE }, - { option_type::EMU, __("Dial Device Assignment"), OPTION_DIAL_DEVICE }, - { option_type::EMU, __("Positional Device Assignment"), OPTION_POSITIONAL_DEVICE }, - { option_type::EMU, __("Mouse Device Assignment"), OPTION_MOUSE_DEVICE } }; + { option_type::HEAD, N_("Device Mapping") }, + { option_type::EMU, N_("Lightgun Device Assignment"), OPTION_LIGHTGUN_DEVICE }, + { option_type::EMU, N_("Trackball Device Assignment"), OPTION_TRACKBALL_DEVICE }, + { option_type::EMU, N_("Pedal Device Assignment"), OPTION_PEDAL_DEVICE }, + { option_type::EMU, N_("Adstick Device Assignment"), OPTION_ADSTICK_DEVICE }, + { option_type::EMU, N_("Paddle Device Assignment"), OPTION_PADDLE_DEVICE }, + { option_type::EMU, N_("Dial Device Assignment"), OPTION_DIAL_DEVICE }, + { option_type::EMU, N_("Positional Device Assignment"), OPTION_POSITIONAL_DEVICE }, + { option_type::EMU, N_("Mouse Device Assignment"), OPTION_MOUSE_DEVICE } }; } std::vector<submenu::option> submenu::video_options() { return std::vector<option>{ - { option_type::HEAD, __("Video Options") }, - { option_type::OSD, __("Video Mode"), OSDOPTION_VIDEO }, - { option_type::OSD, __("Number Of Screens"), OSDOPTION_NUMSCREENS }, + { option_type::HEAD, N_("Video Options") }, + { option_type::OSD, N_("Video Mode"), OSDOPTION_VIDEO }, + { option_type::OSD, N_("Number Of Screens"), OSDOPTION_NUMSCREENS }, #if defined(UI_WINDOWS) && !defined(UI_SDL) - { option_type::OSD, __("Triple Buffering"), WINOPTION_TRIPLEBUFFER }, - { option_type::OSD, __("HLSL"), WINOPTION_HLSL_ENABLE }, + { option_type::OSD, N_("Triple Buffering"), WINOPTION_TRIPLEBUFFER }, + { option_type::OSD, N_("HLSL"), WINOPTION_HLSL_ENABLE }, #endif - { option_type::OSD, __("GLSL"), OSDOPTION_GL_GLSL }, - { option_type::OSD, __("Bilinear Filtering"), OSDOPTION_FILTER }, - { option_type::OSD, __("Bitmap Prescaling"), OSDOPTION_PRESCALE }, - { option_type::OSD, __("Window Mode"), OSDOPTION_WINDOW }, - { option_type::EMU, __("Enforce Aspect Ratio"), OPTION_KEEPASPECT }, - { option_type::OSD, __("Start Out Maximized"), OSDOPTION_MAXIMIZE }, - { option_type::OSD, __("Synchronized Refresh"), OSDOPTION_SYNCREFRESH }, - { option_type::OSD, __("Wait Vertical Sync"), OSDOPTION_WAITVSYNC } }; + { option_type::OSD, N_("GLSL"), OSDOPTION_GL_GLSL }, + { option_type::OSD, N_("Bilinear Filtering"), OSDOPTION_FILTER }, + { option_type::OSD, N_("Bitmap Prescaling"), OSDOPTION_PRESCALE }, + { option_type::OSD, N_("Window Mode"), OSDOPTION_WINDOW }, + { option_type::EMU, N_("Enforce Aspect Ratio"), OPTION_KEEPASPECT }, + { option_type::OSD, N_("Start Out Maximized"), OSDOPTION_MAXIMIZE }, + { option_type::OSD, N_("Synchronized Refresh"), OSDOPTION_SYNCREFRESH }, + { option_type::OSD, N_("Wait Vertical Sync"), OSDOPTION_WAITVSYNC } }; } //std::vector<submenu::option> submenu::export_options() //{ // return std::vector<option>{ -// { option_type::COMMAND, __("Export XML format (like -listxml)"), "exportxml" }, -// { option_type::COMMAND, __("Export TXT format (like -listfull)"), "exporttxt" } }; +// { option_type::COMMAND, N_("Export XML format (like -listxml)"), "exportxml" }, +// { option_type::COMMAND, N_("Export TXT format (like -listfull)"), "exporttxt" } }; //} diff --git a/src/frontend/mame/ui/ui.cpp b/src/frontend/mame/ui/ui.cpp index 1f8e5b7bda8..2e5f999da08 100644 --- a/src/frontend/mame/ui/ui.cpp +++ b/src/frontend/mame/ui/ui.cpp @@ -251,6 +251,9 @@ void mame_ui_manager::exit() // free the font m_font.reset(); + + // free persistent data for other classes + m_session_data.clear(); } diff --git a/src/frontend/mame/ui/ui.h b/src/frontend/mame/ui/ui.h index e9df57b3b2d..633d3c476f4 100644 --- a/src/frontend/mame/ui/ui.h +++ b/src/frontend/mame/ui/ui.h @@ -21,10 +21,15 @@ #include "ui/slider.h" #include "ui/text.h" +#include <any> +#include <cassert> #include <ctime> #include <functional> +#include <map> #include <set> #include <string_view> +#include <typeindex> +#include <typeinfo> #include <utility> #include <vector> @@ -213,9 +218,22 @@ public: virtual void menu_reset() override; + template <typename Owner, typename Data, typename... Param> + Data &get_session_data(Param &&... args) + { + auto const ins(m_session_data.try_emplace(typeid(Owner))); + assert(!ins.first->second.has_value() == ins.second); + if (ins.second) + return ins.first->second.emplace<Data>(std::forward<Param>(args)...); + Data *const result(std::any_cast<Data>(&ins.first->second)); + assert(result); + return *result; + } + private: using handler_callback_func = std::function<uint32_t (render_container &)>; using device_feature_set = std::set<std::pair<std::string, std::string> >; + using session_data_map = std::map<std::type_index, std::any>; // instance variables std::unique_ptr<render_font> m_font; @@ -243,6 +261,8 @@ private: std::time_t m_last_launch_time; std::time_t m_last_warning_time; + session_data_map m_session_data; + // static variables static std::string messagebox_text; static std::string messagebox_poptext; @@ -284,10 +304,10 @@ private: int32_t slider_beam_dot_size(screen_device &screen, std::string *str, int32_t newval); int32_t slider_beam_intensity_weight(screen_device &screen, std::string *str, int32_t newval); std::string slider_get_screen_desc(screen_device &screen); - #ifdef MAME_DEBUG +#ifdef MAME_DEBUG int32_t slider_crossscale(ioport_field &field, std::string *str, int32_t newval); int32_t slider_crossoffset(ioport_field &field, std::string *str, int32_t newval); - #endif +#endif std::vector<std::unique_ptr<slider_state>> m_sliders; }; diff --git a/src/frontend/mame/ui/utils.cpp b/src/frontend/mame/ui/utils.cpp index b18b3aa22af..7da3abb7111 100644 --- a/src/frontend/mame/ui/utils.cpp +++ b/src/frontend/mame/ui/utils.cpp @@ -30,6 +30,7 @@ #include <cstring> #include <iterator> #include <unordered_set> +#include <utility> namespace ui { @@ -57,46 +58,87 @@ constexpr char const *SOFTWARE_REGIONS[] = { "tha", "tpe", "tw", "uk", "ukr", "usa" }; +// must be sorted in std::string comparison order +constexpr std::pair<char const *, char const *> SOFTWARE_INFO_NAMES[] = { + { "alt_title", N_p("swlist-info", "Alternate Title") }, + { "author", N_p("swlist-info", "Author") }, + { "barcode", N_p("swlist-info", "Barcode Number") }, + { "developer", N_p("swlist-info", "Developer") }, + { "distributor", N_p("swlist-info", "Distributor") }, + { "install", N_p("swlist-info", "Installation Instructions") }, + { "isbn", N_p("swlist-info", "ISBN") }, + { "oem", N_p("swlist-info", "OEM") }, + { "original_publisher", N_p("swlist-info", "Original Publisher") }, + { "partno", N_p("swlist-info", "Part Number") }, + { "pcb", N_p("swlist-info", "PCB") }, + { "programmer", N_p("swlist-info", "Programmer") }, + { "release", N_p("swlist-info", "Release Date") }, + { "serial", N_p("swlist-info", "Serial Number") }, + { "usage", N_p("swlist-info", "Usage Instructions") }, + { "version", N_p("swlist-info", "Version") } }; + + + +// must be in sync with the machine_filter::type enum constexpr char const *MACHINE_FILTER_NAMES[machine_filter::COUNT] = { - __("Unfiltered"), - __("Available"), - __("Unavailable"), - __("Working"), - __("Not Working"), - __("Mechanical"), - __("Not Mechanical"), - __("Category"), - __("Favorites"), - __("BIOS"), - __("Not BIOS"), - __("Parents"), - __("Clones"), - __("Manufacturer"), - __("Year"), - __("Save Supported"), - __("Save Unsupported"), - __("CHD Required"), - __("No CHD Required"), - __("Vertical Screen"), - __("Horizontal Screen"), - __("Custom Filter") }; - + N_p("machine-filter", "Unfiltered"), + N_p("machine-filter", "Available"), + N_p("machine-filter", "Unavailable"), + N_p("machine-filter", "Working"), + N_p("machine-filter", "Not Working"), + N_p("machine-filter", "Mechanical"), + N_p("machine-filter", "Not Mechanical"), + N_p("machine-filter", "Category"), + N_p("machine-filter", "Favorites"), + N_p("machine-filter", "BIOS"), + N_p("machine-filter", "Not BIOS"), + N_p("machine-filter", "Parents"), + N_p("machine-filter", "Clones"), + N_p("machine-filter", "Manufacturer"), + N_p("machine-filter", "Year"), + N_p("machine-filter", "Save Supported"), + N_p("machine-filter", "Save Unsupported"), + N_p("machine-filter", "CHD Required"), + N_p("machine-filter", "No CHD Required"), + N_p("machine-filter", "Vertical Screen"), + N_p("machine-filter", "Horizontal Screen"), + N_p("machine-filter", "Custom Filter") }; + +// must be in sync with the software_filter::type enum constexpr char const *SOFTWARE_FILTER_NAMES[software_filter::COUNT] = { - __("Unfiltered"), - __("Available"), - __("Unavailable"), - __("Favorites"), - __("Parents"), - __("Clones"), - __("Year"), - __("Publisher"), - __("Supported"), - __("Partially Supported"), - __("Unsupported"), - __("Release Region"), - __("Device Type"), - __("Software List"), - __("Custom Filter") }; + N_p("software-filter", "Unfiltered"), + N_p("software-filter", "Available"), + N_p("software-filter", "Unavailable"), + N_p("software-filter", "Favorites"), + N_p("software-filter", "Parents"), + N_p("software-filter", "Clones"), + N_p("software-filter", "Year"), + N_p("software-filter", "Publisher"), + N_p("software-filter", "Developer"), + N_p("software-filter", "Distributor"), + N_p("software-filter", "Author"), + N_p("software-filter", "Programmer"), + N_p("software-filter", "Supported"), + N_p("software-filter", "Partially Supported"), + N_p("software-filter", "Unsupported"), + N_p("software-filter", "Release Region"), + N_p("software-filter", "Device Type"), + N_p("software-filter", "Software List"), + N_p("software-filter", "Custom Filter") }; + + + +//------------------------------------------------- +// helper for building a sorted vector +//------------------------------------------------- + +template <typename T> +void add_info_value(std::vector<std::string> &items, T &&value) +{ + std::vector<std::string>::iterator const pos(std::lower_bound(items.begin(), items.end(), value)); + if ((items.end() == pos) || (*pos != value)) + items.emplace(pos, std::forward<T>(value)); +} @@ -213,11 +255,14 @@ protected: , m_selection(0U) { if (value) - { - std::vector<std::string>::const_iterator const found(std::find(choices.begin(), choices.end(), value)); - if (choices.end() != found) - m_selection = std::distance(choices.begin(), found); - } + set_value(value); + } + + void set_value(char const *value) + { + auto const found(std::find(m_choices.begin(), m_choices.end(), value)); + if (m_choices.end() != found) + m_selection = std::distance(m_choices.begin(), found); } bool have_choices() const { return !m_choices.empty(); } @@ -1395,6 +1440,93 @@ private: //------------------------------------------------- +// software info filters +//------------------------------------------------- + +template <software_filter::type Type> +class software_info_filter_base : public choice_filter_impl_base<software_filter, Type> +{ +public: + virtual bool apply(ui_software_info const &info) const override + { + if (!this->have_choices()) + { + return true; + } + else if (!this->selection_valid()) + { + return false; + } + else + { + auto const found( + std::find_if( + info.info.begin(), + info.info.end(), + [this] (software_info_item const &i) { return this->apply(i); })); + return info.info.end() != found; + } + } + +protected: + software_info_filter_base(char const *type, std::vector<std::string> const &choices, char const *value) + : choice_filter_impl_base<software_filter, Type>(choices, value) + , m_info_type(type) + { + } + +private: + bool apply(software_info_item const &info) const + { + return (info.name() == m_info_type) && (info.value() == this->selection_text()); + } + + char const *const m_info_type; +}; + + +class developer_software_filter : public software_info_filter_base<software_filter::DEVELOPERS> +{ +public: + developer_software_filter(software_filter_data const &data, char const *value, emu_file *file, unsigned indent) + : software_info_filter_base<software_filter::DEVELOPERS>("developer", data.developers(), value) + { + } +}; + + +class distributor_software_filter : public software_info_filter_base<software_filter::DISTRIBUTORS> +{ +public: + distributor_software_filter(software_filter_data const &data, char const *value, emu_file *file, unsigned indent) + : software_info_filter_base<software_filter::DISTRIBUTORS>("distributor", data.distributors(), value) + { + } +}; + + +class author_software_filter : public software_info_filter_base<software_filter::AUTHORS> +{ +public: + author_software_filter(software_filter_data const &data, char const *value, emu_file *file, unsigned indent) + : software_info_filter_base<software_filter::AUTHORS>("author", data.authors(), value) + { + } +}; + + +class programmer_software_filter : public software_info_filter_base<software_filter::PROGRAMMERS> +{ +public: + programmer_software_filter(software_filter_data const &data, char const *value, emu_file *file, unsigned indent) + : software_info_filter_base<software_filter::PROGRAMMERS>("programmer", data.programmers(), value) + { + } +}; + + + +//------------------------------------------------- // composite software filter //------------------------------------------------- @@ -1432,6 +1564,10 @@ public: case FAVORITE: case YEAR: case PUBLISHERS: + case DEVELOPERS: + case DISTRIBUTORS: + case AUTHORS: + case PROGRAMMERS: case REGION: case DEVICE_TYPE: case LIST: @@ -1444,7 +1580,15 @@ public: static bool is_inclusion(type n) { - return (YEAR == n) || (PUBLISHERS == n) || (REGION == n) || (DEVICE_TYPE == n) || (LIST == n); + return (YEAR == n) + || (PUBLISHERS == n) + || (DEVELOPERS == n) + || (DISTRIBUTORS == n) + || (AUTHORS == n) + || (PROGRAMMERS == n) + || (REGION == n) + || (DEVICE_TYPE == n) + || (LIST == n); } private: @@ -1542,31 +1686,35 @@ bool machine_filter_data::load_ini(emu_file &file) void software_filter_data::add_region(std::string const &longname) { std::string name(extract_region(longname)); - std::vector<std::string>::iterator const pos(std::lower_bound(m_regions.begin(), m_regions.end(), name)); - if ((m_regions.end() == pos) || (*pos != name)) - m_regions.emplace(pos, std::move(name)); + add_info_value(m_regions, std::move(name)); } void software_filter_data::add_publisher(std::string const &publisher) { std::string name(extract_publisher(publisher)); - std::vector<std::string>::iterator const pos(std::lower_bound(m_publishers.begin(), m_publishers.end(), name)); - if ((m_publishers.end() == pos) || (*pos != name)) - m_publishers.emplace(pos, std::move(name)); + add_info_value(m_publishers, std::move(name)); } void software_filter_data::add_year(std::string const &year) { - std::vector<std::string>::iterator const pos(std::lower_bound(m_years.begin(), m_years.end(), year)); - if ((m_years.end() == pos) || (*pos != year)) - m_years.emplace(pos, year); + add_info_value(m_years, year); +} + +void software_filter_data::add_info(software_info_item const &info) +{ + if (info.name() == "developer") + add_info_value(m_developers, info.value()); + else if (info.name() == "distributor") + add_info_value(m_distributors, info.value()); + else if (info.name() == "author") + add_info_value(m_authors, info.value()); + else if (info.name() == "programmer") + add_info_value(m_programmers, info.value()); } void software_filter_data::add_device_type(std::string const &device_type) { - std::vector<std::string>::iterator const pos(std::lower_bound(m_device_types.begin(), m_device_types.end(), device_type)); - if ((m_device_types.end() == pos) || (*pos != device_type)) - m_device_types.emplace(pos, device_type); + add_info_value(m_device_types, device_type); } void software_filter_data::add_list(std::string const &name, std::string const &description) @@ -1707,7 +1855,7 @@ char const *machine_filter::config_name(type n) char const *machine_filter::display_name(type n) { assert(COUNT > n); - return _(MACHINE_FILTER_NAMES[n]); + return _("machine-filter", MACHINE_FILTER_NAMES[n]); } machine_filter::machine_filter() @@ -1728,7 +1876,7 @@ char const *software_filter::config_name(type n) char const *software_filter::display_name(type n) { assert(COUNT > n); - return _(SOFTWARE_FILTER_NAMES[n]); + return _("software-filter", SOFTWARE_FILTER_NAMES[n]); } software_filter::software_filter() @@ -1756,6 +1904,14 @@ software_filter::ptr software_filter::create(type n, software_filter_data const return std::make_unique<years_software_filter>(data, value, file, indent); case PUBLISHERS: return std::make_unique<publishers_software_filter>(data, value, file, indent); + case DEVELOPERS: + return std::make_unique<developer_software_filter>(data, value, file, indent); + case DISTRIBUTORS: + return std::make_unique<distributor_software_filter>(data, value, file, indent); + case AUTHORS: + return std::make_unique<author_software_filter>(data, value, file, indent); + case PROGRAMMERS: + return std::make_unique<programmer_software_filter>(data, value, file, indent); case SUPPORTED: return std::make_unique<supported_software_filter>(data, value, file, indent); case PARTIAL_SUPPORTED: @@ -1866,31 +2022,52 @@ std::vector<std::string> tokenize(const std::string &text, char sep) ui_software_info::ui_software_info( - software_info const &info, + software_info const &sw, software_part const &p, game_driver const &d, std::string const &li, std::string const &is, std::string const &de) - : shortname(info.shortname()), longname(info.longname()), parentname(info.parentname()) - , year(info.year()), publisher(info.publisher()) - , supported(info.supported()) + : shortname(sw.shortname()), longname(sw.longname()), parentname(sw.parentname()) + , year(sw.year()), publisher(sw.publisher()) + , supported(sw.supported()) , part(p.name()) , driver(&d) , listname(li), interface(p.interface()), instance(is) , startempty(0) , parentlongname() - , usage() + , infotext() , devicetype(de) + , info() + , alttitles() , available(false) { - for (feature_list_item const &feature : info.other_info()) + info.reserve(sw.info().size()); + bool firstinfo(true); + for (software_info_item const &feature : sw.info()) { - if (feature.name() == "usage") - { - usage = feature.value(); - break; - } + // add info for the internal UI, localising recognised + if (!firstinfo) + infotext.append(2, '\n'); + firstinfo = false; + auto const found = std::lower_bound( + std::begin(ui::SOFTWARE_INFO_NAMES), + std::end(ui::SOFTWARE_INFO_NAMES), + feature.name().c_str(), + [] (std::pair<char const *, char const *> const &a, char const *b) + { + return 0 > std::strcmp(a.first, b); + }); + if ((std::end(ui::SOFTWARE_INFO_NAMES) != found) && (feature.name() == found->first)) + infotext.append(_("swlist-info", found->second)); + else + infotext.append(feature.name()); + infotext.append(1, '\n').append(feature.value()); + + // keep references to stuff for filtering and searching + auto const &ins = info.emplace_back(feature.name(), feature.value()); + if (feature.name() == "alt_title") + alttitles.emplace_back(ins.value()); } } @@ -1899,3 +2076,67 @@ ui_software_info::ui_software_info(game_driver const &d) : shortname(d.name), longname(d.type.fullname()), driver(&d), startempty(1), available(true) { } + +ui_software_info::ui_software_info(ui_software_info const &that) + : shortname(that.shortname) + , longname(that.longname) + , parentname(that.parentname) + , year(that.year) + , publisher(that.publisher) + , supported(that.supported) + , part(that.part) + , driver(that.driver) + , listname(that.listname) + , interface(that.interface) + , instance(that.instance) + , startempty(that.startempty) + , parentlongname(that.parentlongname) + , infotext(that.infotext) + , devicetype(that.devicetype) + , info(that.info) + , alttitles() + , available(that.available) +{ + // build self-referencing member + alttitles.reserve(that.alttitles.size()); + for (software_info_item const &feature : info) + { + if (feature.name() == "alt_title") + alttitles.emplace_back(feature.value()); + } +} + +ui_software_info &ui_software_info::operator=(ui_software_info const &that) +{ + if (&that != this) + { + // copy simple stuff + shortname = that.shortname; + longname = that.longname; + parentname = that.parentname; + year = that.year; + publisher = that.publisher; + supported = that.supported; + part = that.part; + driver = that.driver; + listname = that.listname; + interface = that.interface; + instance = that.instance; + startempty = that.startempty; + parentlongname = that.parentlongname; + infotext = that.infotext; + devicetype = that.devicetype; + info = that.info; + alttitles.clear(); + available = that.available; + + // build self-referencing member + alttitles.reserve(that.alttitles.size()); + for (software_info_item const &feature : info) + { + if (feature.name() == "alt_title") + alttitles.emplace_back(feature.value()); + } + } + return *this; +} diff --git a/src/frontend/mame/ui/utils.h b/src/frontend/mame/ui/utils.h index 67320c19b6f..184f922d7d2 100644 --- a/src/frontend/mame/ui/utils.h +++ b/src/frontend/mame/ui/utils.h @@ -16,6 +16,7 @@ #include "unicode.h" #include <algorithm> +#include <functional> #include <limits> #include <memory> #include <string> @@ -38,9 +39,14 @@ struct ui_system_info int index; bool available = false; + std::string description; + std::string parent; + std::u32string ucs_shortname; std::u32string ucs_description; std::u32string ucs_manufacturer_description; + std::u32string ucs_default_description; + std::u32string ucs_manufacturer_default_description; }; struct ui_software_info @@ -49,7 +55,7 @@ struct ui_software_info // info for software list item ui_software_info( - software_info const &info, + software_info const &sw, software_part const &p, game_driver const &d, std::string const &li, @@ -60,19 +66,19 @@ struct ui_software_info ui_software_info(game_driver const &d); // copyable/movable - ui_software_info(ui_software_info const &) = default; - ui_software_info(ui_software_info &&) = default; - ui_software_info &operator=(ui_software_info const &) = default; + ui_software_info(ui_software_info const &that); + ui_software_info(ui_software_info &&that) = default; + ui_software_info &operator=(ui_software_info const &that); ui_software_info &operator=(ui_software_info &&) = default; bool operator==(ui_software_info const &r) const { - // compares all fields except available - return shortname == r.shortname && longname == r.longname && parentname == r.parentname - && year == r.year && publisher == r.publisher && supported == r.supported - && part == r.part && driver == r.driver && listname == r.listname - && interface == r.interface && instance == r.instance && startempty == r.startempty - && parentlongname == r.parentlongname && usage == r.usage && devicetype == r.devicetype; + // compares all fields except info (fragile), alttitles (included in info) and available (environmental) + return (shortname == r.shortname) && (longname == r.longname) && (parentname == r.parentname) + && (year == r.year) && (publisher == r.publisher) && (supported == r.supported) + && (part == r.part) && (driver == r.driver) && (listname == r.listname) + && (interface == r.interface) && (instance == r.instance) && (startempty == r.startempty) + && (parentlongname == r.parentlongname) && (devicetype == r.devicetype); } std::string shortname; @@ -88,8 +94,10 @@ struct ui_software_info std::string instance; uint8_t startempty = 0; std::string parentlongname; - std::string usage; + std::string infotext; std::string devicetype; + std::vector<software_info_item> info; + std::vector<std::reference_wrapper<std::string const> > alttitles; bool available = false; }; @@ -206,6 +214,10 @@ public: CLONES, YEAR, PUBLISHERS, + DEVELOPERS, + DISTRIBUTORS, + AUTHORS, + PROGRAMMERS, SUPPORTED, PARTIAL_SUPPORTED, UNSUPPORTED, @@ -287,6 +299,10 @@ public: std::vector<std::string> const ®ions() const { return m_regions; } std::vector<std::string> const &publishers() const { return m_publishers; } std::vector<std::string> const &years() const { return m_years; } + std::vector<std::string> const &developers() const { return m_developers; } + std::vector<std::string> const &distributors() const { return m_distributors; } + std::vector<std::string> const &authors() const { return m_authors; } + std::vector<std::string> const &programmers() const { return m_programmers; } std::vector<std::string> const &device_types() const { return m_device_types; } std::vector<std::string> const &list_names() const { return m_list_names; } std::vector<std::string> const &list_descriptions() const { return m_list_descriptions; } @@ -295,6 +311,7 @@ public: void add_region(std::string const &longname); void add_publisher(std::string const &publisher); void add_year(std::string const &year); + void add_info(software_info_item const &info); void add_device_type(std::string const &device_type); void add_list(std::string const &name, std::string const &description); void finalise(); @@ -307,6 +324,10 @@ private: std::vector<std::string> m_regions; std::vector<std::string> m_publishers; std::vector<std::string> m_years; + std::vector<std::string> m_developers; + std::vector<std::string> m_distributors; + std::vector<std::string> m_authors; + std::vector<std::string> m_programmers; std::vector<std::string> m_device_types; std::vector<std::string> m_list_names, m_list_descriptions; }; diff --git a/src/lib/util/unicode.cpp b/src/lib/util/unicode.cpp index 6787db4a501..3b6f665f63a 100644 --- a/src/lib/util/unicode.cpp +++ b/src/lib/util/unicode.cpp @@ -14,7 +14,6 @@ #ifdef _WIN32 #include "strconv.h" -#define UTF8PROC_DLLEXPORT #endif #include <utf8proc.h> |